about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--system/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/default.nix b/system/default.nix
index b7ff9b1e..af4d4591 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -1,4 +1,4 @@
-{...}: {
+{lib, ...}: {
   imports = [
     ./boot
     ./fileSystemLayouts
@@ -18,6 +18,6 @@
   ];
   # remove all the bloat, which nixos installs by default
   environment = {
-    defaultPackages = [];
+    defaultPackages = lib.mkForce [];
   };
 }