diff options
| author | schererleander <leander@schererleander.de> | 2025-05-08 14:25:58 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-05-08 14:25:58 +0200 |
| commit | 9425055b13d4fa89280b899c2bde22fadc8561b3 (patch) | |
| tree | 129b57dbb9978fc250ff9988d7c7f91900a1e5ed /hosts/darwin/configuration.nix | |
| parent | e0bea314193d32fb3a2fd79dffccbc5468baa91e (diff) | |
| parent | 8ac872e1a963c73609ecfc38261b9490813cb9b2 (diff) | |
Merge branch 'main' of github.com:schererleander/nix
Diffstat (limited to 'hosts/darwin/configuration.nix')
| -rw-r--r-- | hosts/darwin/configuration.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix index 2dad61e..86dee3c 100644 --- a/hosts/darwin/configuration.nix +++ b/hosts/darwin/configuration.nix @@ -2,13 +2,18 @@ { services.nix-daemon.enable = true; - programs.zsh.enable = true; + nix.settings.experimental-features = "nix-command flakes"; + nixpkgs.hostPlatform = "aarch64-darwin"; + nixpkgs.config.allowUnfree = true; + users.users.schererleander = { home = "/Users/schererleander"; shell = pkgs.zsh; }; + programs.zsh.enable = true; + homebrew = { enable = true; taps = []; @@ -22,7 +27,5 @@ ]; }; - nixpkgs.hostPlatform = "aarch64-darwin"; - nixpkgs.config.allowUnfree = true; system.stateVersion = 5; } |
