From 971c48da072b26bda8bb9b5f6ccda6148b169cd6 Mon Sep 17 00:00:00 2001 From: schererleander Date: Fri, 2 May 2025 13:54:33 +0200 Subject: setup nix-darwin --- hosts/darwin/configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hosts/darwin/configuration.nix (limited to 'hosts/darwin/configuration.nix') 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; +} -- cgit v1.3.1