ctucx.git: nixfiles

ctucx' nixfiles

commit 7bd5b168154ca7b9311336e61ee15f59cf500f98
parent 85b4966ba5af0c6d17ec2a99c369a31dd1945b1f
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 31 Jul 2022 17:14:30 +0200

machines/blechkasten: enable `nix-command` in nix
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/machines/blechkasten/darwin-configuration.nix b/machines/blechkasten/darwin-configuration.nix
@@ -40,7 +40,12 @@ in {
     ./syncthing.nix
   ];
 
-  nix.package = pkgs.nix;
+  nix = {
+    package = pkgs.nix;
+    extraOptions = ''
+      experimental-features = nix-command
+    '';
+  };
   services.nix-daemon.enable = true;
 
   home-manager = {