This commit is contained in:
Dennis Schoepf 2025-01-04 23:28:06 +01:00
parent b68f8c664b
commit da35394474
5 changed files with 116 additions and 1 deletions

View file

@ -7,12 +7,15 @@
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
self,
nixpkgs,
home-manager,
nix-darwin,
...
} @ inputs: let
inherit (self) outputs;
@ -22,5 +25,11 @@
specialArgs = {inherit inputs outputs;};
modules = [./hosts/dnsc-server];
};
darwinConfigurations.dnsc-mac = nixpkgs.lib.nixosSystem {
system = "aarch64-darwin";
specialArgs = {inherit inputs outputs;};
modules = [./hosts/dnsc-mac];
};
};
}