aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/darwin/configuration.nix9
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;
}