diff options
Diffstat (limited to 'configurations/test-headful')
-rw-r--r-- | configurations/test-headful/default.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/configurations/test-headful/default.nix b/configurations/test-headful/default.nix index 79a1536..ce8aba5 100644 --- a/configurations/test-headful/default.nix +++ b/configurations/test-headful/default.nix @@ -1,5 +1,4 @@ { lib, ... }: -with lib; { nixfiles.modules = { dwm.enable = false; @@ -10,10 +9,10 @@ with lib; fileSystems."/".device = "/dev/null"; documentation = { - enable = mkForce false; + enable = lib.mkForce false; man = { - enable = mkForce false; - man-db.enable = mkForce false; + enable = lib.mkForce false; + man-db.enable = lib.mkForce false; }; }; } |