summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--user/nanopi.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/user/nanopi.nix b/user/nanopi.nix
index c4c8402d..e3ce2d74 100644
--- a/user/nanopi.nix
+++ b/user/nanopi.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
 {
   imports = [
     ./settings/base.nix
@@ -14,7 +14,10 @@
     homeDirectory = "/home/alan";
     stateVersion = "22.11";
   };
+  # home-manager complains when setting nix.conf otherwise
+  nix.package = pkgs.nix;
   nix.settings = {
     max-jobs = 4;
+    experimental-features = "nix-command flakes";
   };
 }