Merge branch 'master' of 192.168.1.126:TheCrazyInsanity/nixos-configv3

This commit is contained in:
2026-01-30 17:05:05 -05:00
2 changed files with 3 additions and 0 deletions

View File

@@ -45,6 +45,7 @@
]; ];
files = [ files = [
"/etc/machine-id" "/etc/machine-id"
"/etc/passwdfile"
{ {
file = "/var/keys/secret_file"; file = "/var/keys/secret_file";
parentDirectory = { parentDirectory = {
@@ -91,4 +92,5 @@
]; ];
}; };
}; };
users.users.laythe.hashedPasswordFile="/persistent/etc/passwdfile";
} }

View File

@@ -51,6 +51,7 @@
fileSystems."/persistent" = { fileSystems."/persistent" = {
device = "/dev/disk/by-label/BUTTER"; device = "/dev/disk/by-label/BUTTER";
fsType = "btrfs"; fsType = "btrfs";
neededForBoot = true;
options = [ "compress=zstd" "subvol=persist" ]; options = [ "compress=zstd" "subvol=persist" ];
}; };