fix(Infini-FRAMEWORK): mount host keys during boot
This commit is contained in:
parent
ac87f70428
commit
392c86f93c
2 changed files with 7 additions and 3 deletions
|
@ -20,9 +20,6 @@
|
||||||
"/root/.local/share/nix"
|
"/root/.local/share/nix"
|
||||||
"/root/.ssh"
|
"/root/.ssh"
|
||||||
|
|
||||||
# /etc directories
|
|
||||||
"/etc/ssh"
|
|
||||||
|
|
||||||
# /var directories
|
# /var directories
|
||||||
"/var/log"
|
"/var/log"
|
||||||
"/var/lib/fprint"
|
"/var/lib/fprint"
|
||||||
|
|
|
@ -31,6 +31,13 @@ in
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"/etc/ssh" = {
|
||||||
|
device = main;
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = [ "subvolid=628" "autodefrag" "noatime" "ssd" ];
|
||||||
|
neededForBoot = true;
|
||||||
|
};
|
||||||
|
|
||||||
"/media/main" = {
|
"/media/main" = {
|
||||||
device = main;
|
device = main;
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue