24 lines
679 B
Nix
24 lines
679 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
|
headscale.url = "github:juanfont/headscale";
|
|
headplane = {
|
|
url = "github:tale/headplane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
outputs = { self, nixpkgs, headscale, headplane, ... }@inputs: {
|
|
nixosConfigurations.headscale = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
./headscale.nix
|
|
headplane.nixosModules.headplane
|
|
({ pkgs, ... }: { nixpkgs.overlays = [ headplane.overlays.default ]; })
|
|
];
|
|
specialArgs = { inherit inputs; };
|
|
};
|
|
};
|
|
}
|