about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-10 12:32:27 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:06 +0200
commitc28efb453df4d7f125dc69a6c89bef9c66f69500 (patch)
treed82b98f1653ed26ea7422ff65b6f0b40ca1cca94 /system
parentFix(flake): Only activate ca-derivations after feature activate (diff)
downloadnixos-config-c28efb453df4d7f125dc69a6c89bef9c66f69500.zip
Fix(treewide): Make system compile again
Diffstat (limited to 'system')
-rw-r--r--system/default.nix3
-rw-r--r--system/impermanence/default.nix7
-rw-r--r--system/nixpkgs/default.nix6
3 files changed, 9 insertions, 7 deletions
diff --git a/system/default.nix b/system/default.nix
index a417aecc..64073fb8 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -3,7 +3,7 @@
     ./boot
     ./fileSystemLayouts
     ./font
-    ./impermanence
+    #./impermanence already at flake level imported
     ./locale
     ./sound
     ./users # the position of this item is fully arbitrary
@@ -11,6 +11,7 @@
     ./hardware
     ./services
     ./tempfiles
+    ./nixpkgs
   ];
   # remove all bloat, nixos installs by default
   environment = {
diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix
index 2d62dc94..71b023ff 100644
--- a/system/impermanence/default.nix
+++ b/system/impermanence/default.nix
@@ -1,9 +1,4 @@
-{impermanence, ...}: {
-  imports = [
-    # impermanence.nixosModules.impermanence
-    "${impermanence}/nixos.nix"
-  ];
-
+{...}: {
   # needed for the hm impermanence config
   programs.fuse.userAllowOther = true;
 
diff --git a/system/nixpkgs/default.nix b/system/nixpkgs/default.nix
new file mode 100644
index 00000000..f226faa2
--- /dev/null
+++ b/system/nixpkgs/default.nix
@@ -0,0 +1,6 @@
+# vim: ts=2
+{lib, ...}: {
+  nixpkgs.config = {
+    #contentAddressedByDefault = true;
+  };
+}