about summary refs log tree commit diff
path: root/hosts/mba
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-09-14 17:18:09 -0700
committerFranck Cuny <franck@fcuny.net>2023-09-14 17:36:58 -0700
commit17a8f86782b773c77880e34b6a02e53def4015e8 (patch)
treeee611470d040b90331865b7e519b7e737ea70c29 /hosts/mba
parentbuild(deps): bump cachix/install-nix-action from 22 to 23 (#2) (diff)
downloadworld-17a8f86782b773c77880e34b6a02e53def4015e8.tar.gz
more configuration for darwin
Diffstat (limited to 'hosts/mba')
-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;
 }