diff options
Diffstat (limited to 'modules/flake/darwin.nix')
| -rw-r--r-- | modules/flake/darwin.nix | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/modules/flake/darwin.nix b/modules/flake/darwin.nix index 84eb74d..cc59bf6 100644 --- a/modules/flake/darwin.nix +++ b/modules/flake/darwin.nix @@ -1,10 +1,18 @@ -{ inputs, config, self, ... }: +{ + inputs, + config, + self, + ... +}: { flake.darwinConfigurations = { lilith = inputs.nix-darwin.lib.darwinSystem { system = "aarch64-darwin"; - specialArgs = { inherit inputs; host = "lilith"; }; + specialArgs = { + inherit inputs; + host = "lilith"; + }; modules = [ inputs.home-manager.darwinModules.home-manager { @@ -14,7 +22,10 @@ (self + /hosts/lilith/configuration.nix) { nixpkgs.config.allowUnfree = true; - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.experimental-features = [ + "nix-command" + "flakes" + ]; } ]; }; |
