diff options
author | Franck Cuny <franck@fcuny.net> | 2023-09-14 17:18:09 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-09-14 17:36:58 -0700 |
commit | 17a8f86782b773c77880e34b6a02e53def4015e8 (patch) | |
tree | ee611470d040b90331865b7e519b7e737ea70c29 /hosts | |
parent | build(deps): bump cachix/install-nix-action from 22 to 23 (#2) (diff) | |
download | world-17a8f86782b773c77880e34b6a02e53def4015e8.tar.gz |
more configuration for darwin
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/mba/default.nix | 13 |
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; } |