reformat
This commit is contained in:
parent
ac196a752c
commit
a8c7fc1718
3 changed files with 25 additions and 31 deletions
|
@ -28,12 +28,9 @@
|
|||
|
||||
# automount
|
||||
# ---------
|
||||
(let
|
||||
mediaUUID = "3d106f56-89e5-400d-9d6b-1dd957919548";
|
||||
in
|
||||
{
|
||||
(let mediaUUID = "3d106f56-89e5-400d-9d6b-1dd957919548";
|
||||
in {
|
||||
fileSystems."/media" = {
|
||||
#device = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
||||
device = "/dev/disk/by-uuid/${mediaUUID}";
|
||||
fsType = "ext4";
|
||||
options = [
|
||||
|
@ -47,14 +44,12 @@
|
|||
options = "nofail,noauto";
|
||||
type = "ext4";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
#what = "/dev/disk/by-uuid/162c2f9e-8baa-4433-99fd-bb7e7b69472f";
|
||||
what = "/dev/disk/by-uuid/${mediaUUID}";
|
||||
where = "/media";
|
||||
}];
|
||||
})
|
||||
];
|
||||
|
||||
|
||||
# NTFS support
|
||||
# ------------
|
||||
environment.systemPackages = [ pkgs.ntfs3g ];
|
||||
|
|
|
@ -227,7 +227,6 @@ in {
|
|||
"ssh://gogs@git.ingolf-wagner.de:443/palo/LineagoOS-build.git"
|
||||
"git@github.com:mrVanDalo/LineagoOS-build.git")
|
||||
|
||||
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
services.prometheus = {
|
||||
enable = true;
|
||||
# keep data for 30 days
|
||||
extraFlags = "--storage.tsdb.retention.time=30d"
|
||||
extraFlags = "--storage.tsdb.retention.time=30d";
|
||||
scrapeConfigs = [
|
||||
{
|
||||
job_name = "nginx";
|
||||
|
|
Loading…
Reference in a new issue