hp: use tmpfs root

This commit is contained in:
Sean Buckley 2021-10-10 04:21:36 -04:00
parent 55a8b546c0
commit 45d5ed08a6

View file

@ -4,6 +4,23 @@
openssh.enable = true; openssh.enable = true;
}; };
users.mutableUsers = false;
users.users.root.passwordFile = "/nix/persist/shadow_sean";
users.users.sean.passwordFile = "/nix/persist/shadow_sean";
environment.persistence."/nix/persist" = {
files = [
"/etc/machine-id"
"/etc/ssh/ssh_host_ed25519_key.pub"
"/etc/ssh/ssh_host_ed25519_key"
"/etc/ssh/ssh_host_rsa_key.pub"
"/etc/ssh/ssh_host_rsa_key"
];
directories = [
"/var/log"
];
};
sconfig = { sconfig = {
gnome = true; gnome = true;
profile = "desktop"; profile = "desktop";
@ -21,10 +38,11 @@
}; };
fileSystems = { fileSystems = {
"/" = { device = "zroot/locker/os"; fsType = "zfs"; }; "/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
"/nix" = { device = "zroot/locker/nix"; fsType = "zfs"; };
"/home" = { device = "zroot/locker/home"; fsType = "zfs"; }; "/home" = { device = "zroot/locker/home"; fsType = "zfs"; };
"/boot" = { device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition"; fsType = "vfat"; }; "/boot" = { device = "/dev/disk/by-partlabel/EFI\\x20system\\x20partition"; fsType = "vfat"; };
}; };
system.stateVersion = "20.09"; system.stateVersion = "21.05";
} }