diff options
| author | schererleander <leander@schererleander.de> | 2025-05-08 14:23:04 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-05-08 14:23:04 +0200 |
| commit | 5f0b32efe1e2a894be2261a2b9911f7886bc9d63 (patch) | |
| tree | b63f7d20b5eb5c406f8160458f1c7932129038a8 /hosts/darwin/configuration.nix | |
| parent | 67fbdc5148475abcdbb5030298a1db80b7853605 (diff) | |
add experimental features
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 e3e7372..8edccab 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 = []; @@ -21,7 +26,5 @@ ]; }; - nixpkgs.hostPlatform = "aarch64-darwin"; - nixpkgs.config.allowUnfree = true; system.stateVersion = 5; } |
