about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-17 21:32:22 +0200
committerSoispha <soispha@vhack.eu>2023-05-17 22:14:20 +0200
commit7997ee73f614bdf47534802cc2407fad9f2af514 (patch)
treeb34d6a80b2132b0fe4fc12ab5956a6ed29d5c064 /system
parentchore(version): v1.2.0 (diff)
downloadnixos-config-7997ee73f614bdf47534802cc2407fad9f2af514.tar.gz
nixos-config-7997ee73f614bdf47534802cc2407fad9f2af514.zip
Fix(system): Truly disable all the NixOS default bloat
Diffstat (limited to '')
-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 [];
   };
 }