Compare commits

..

No commits in common. "203bb6a13a3bc953896b61864adebe26e1709de1" and "d636de890c44a27ba94ecaaaf3158eeb2ef5b1d5" have entirely different histories.

2 changed files with 5 additions and 9 deletions

View File

@ -7,28 +7,24 @@
type = "gpt";
partitions = {
# Boot partition
ESP = rec {
ESP = {
size = "512MiB";
type = "EF00";
label = "boot";
device = "/dev/disk/by-label/${label}";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
extraArgs = [ "-n ${label}" ];
extraArgs = [ "-n boot" ];
};
};
# Root partition ext4
root = rec {
root = {
size = "100%";
label = "nixos";
device = "/dev/disk/by-label/${label}";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
extraArgs = [ "-L ${label}" ];
extraArgs = [ "-L nixos" ];
};
};
};

View File

@ -123,7 +123,7 @@
gc = {
automatic = true;
options = "--delete-older-than 10d";
options = "--delete-older-than 7d";
};
settings = {