diff options
author | sils <sils@sils.li> | 2023-08-02 12:27:52 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-08-02 12:27:52 +0200 |
commit | de7f1872ca040677a97400d791916ce6e0813925 (patch) | |
tree | 5e6185c755e352f73757fa0bd2333ed77110db61 /hosts | |
parent | Feat(flake): Add impermanence (diff) | |
download | nix-config-de7f1872ca040677a97400d791916ce6e0813925.tar.gz nix-config-de7f1872ca040677a97400d791916ce6e0813925.zip |
Fix(hosts/thinklappi): Mark /srv as needed for boot
This is mandatory for usage as persistent directory with impermanence
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/thinklappi/basesystem.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hosts/thinklappi/basesystem.nix b/hosts/thinklappi/basesystem.nix index 05b9093..54f1daf 100644 --- a/hosts/thinklappi/basesystem.nix +++ b/hosts/thinklappi/basesystem.nix @@ -58,6 +58,7 @@ device = "/dev/disk/by-label/nixos-root"; fsType = "btrfs"; options = ["subvol=srv" "compress-force=zstd"]; + neededForBoot = true; }; "/swap" = { device = "/dev/disk/by-label/nixos-root"; |