aboutsummaryrefslogtreecommitdiff
path: root/modules/flake/darwin.nix
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-01-13 00:34:54 +0100
committerLeander Scherer <leander@schererleander.de>2026-01-13 00:34:54 +0100
commit714280aacdd0cf7c6d3daa2d74d10664404a0471 (patch)
tree6c05beee56f3ac5937ddabcfce292a0d8abb9792 /modules/flake/darwin.nix
parent7324b0e1af9f469c16771b8ec3bf8149149c81ce (diff)
format(flake): nixfmt
Diffstat (limited to 'modules/flake/darwin.nix')
-rw-r--r--modules/flake/darwin.nix17
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"
+ ];
}
];
};