diff options
author | ene <ene@sils.li> | 2023-02-20 10:12:35 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-20 11:42:45 +0100 |
commit | 2e1fab3e13c557928313f022a7f48ff0ce55e251 (patch) | |
tree | a2a32757009a0a77c39b47098af1886bb3b7d38f /system/default.nix | |
parent | Fix(system): Remove unnecessary persistent file (diff) | |
download | nixos-config-2e1fab3e13c557928313f022a7f48ff0ce55e251.tar.gz nixos-config-2e1fab3e13c557928313f022a7f48ff0ce55e251.zip |
Fix(system): Refactor impermanence
Diffstat (limited to '')
-rw-r--r-- | system/default.nix | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/system/default.nix b/system/default.nix index f94ba34f..34bc8b4b 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,9 +1,4 @@ -{ - config, - pkgs, - shell-library, - ... -}: { +{...}: { imports = [ ./boot ./users # this needs to be before fileSystemLayouts @@ -11,7 +6,7 @@ ./font ./impermanence ./locale -#./packages + #./packages ./sound ]; } |