fix(Infini-FRAMEWORK): mount host keys during boot

This commit is contained in:
Infinidoge 2022-04-22 01:51:40 -04:00
parent ac87f70428
commit 392c86f93c
2 changed files with 7 additions and 3 deletions

View file

@ -20,9 +20,6 @@
"/root/.local/share/nix"
"/root/.ssh"
# /etc directories
"/etc/ssh"
# /var directories
"/var/log"
"/var/lib/fprint"

View file

@ -31,6 +31,13 @@ in
neededForBoot = true;
};
"/etc/ssh" = {
device = main;
fsType = "btrfs";
options = [ "subvolid=628" "autodefrag" "noatime" "ssd" ];
neededForBoot = true;
};
"/media/main" = {
device = main;
fsType = "btrfs";