diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-06 07:04:03 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-06 07:04:03 -0700 |
commit | 679497cf607e59cb4c62d80174228e776369751f (patch) | |
tree | 21e0f1e9436f1aabfe146d9aaec0dd36fbb06dd5 /hosts/tahoe | |
parent | refactor configuration for AMD (diff) | |
download | world-679497cf607e59cb4c62d80174228e776369751f.tar.gz |
refactor boot configuration to a module
We don't need the previous `hosts/common/system` configs anymore, as everything has been moved out. We keep some boot configuration for carmel in the host configuration for now, but I need to check why I don't have similar settings for tahoe (since I also need to unlock the host remotely).
Diffstat (limited to 'hosts/tahoe')
-rw-r--r-- | hosts/tahoe/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/tahoe/default.nix b/hosts/tahoe/default.nix index 9d11720..c72baa0 100644 --- a/hosts/tahoe/default.nix +++ b/hosts/tahoe/default.nix @@ -7,7 +7,10 @@ ../profiles/nas.nix ]; - boot = { initrd = { luks.devices."system".allowDiscards = true; }; }; + my.system.boot = { + tmp = { clean = true; }; + initrd = { network.enable = true; }; + }; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions |