about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/mba/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/mba/default.nix b/hosts/mba/default.nix
index 89e703e..4431df2 100644
--- a/hosts/mba/default.nix
+++ b/hosts/mba/default.nix
@@ -2,6 +2,13 @@
 {
   services.nix-daemon.enable = true;
 
+  nix = {
+    package = pkgs.nixFlakes;
+    settings = {
+      experimental-features = [ "nix-command" "flakes" ];
+    };
+  };
+
   programs.zsh.enable = true;
 
   homebrew = {
@@ -20,4 +27,10 @@
       "wireshark"
     ];
   };
+
+  users.users.fcuny.home = "/Users/fcuny";
+
+  home-manager.useGlobalPkgs = true;
+  home-manager.useUserPackages = true;
+  home-manager.users.fcuny = import ../../home/profiles/darwin.nix;
 }