diff options
Diffstat (limited to 'hosts/darwin/configuration.nix')
| -rw-r--r-- | hosts/darwin/configuration.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/darwin/configuration.nix b/hosts/darwin/configuration.nix new file mode 100644 index 0000000..fc1ba38 --- /dev/null +++ b/hosts/darwin/configuration.nix @@ -0,0 +1,15 @@ +{ config, pkgs, lib, ...}: + +{ + services.nix-daemon.enable = true; + programs.zsh.enable = true; + + users.users.schererleander = { + home = "/Users/schererleander"; + shell = pkgs.zsh; + }; + + nixpkgs.hostPlatform = "aarch64-darwin"; + nixpkgs.config.allowUnfree = true; + system.stateVersion = 5; +} |
