2023-07-25 13:25:23 -04:00
|
|
|
{
|
2023-07-27 12:32:01 -04:00
|
|
|
inputs = {
|
|
|
|
nixpkgs = {
|
|
|
|
url = "github:NixOS/nixpkgs/release-23.05";
|
|
|
|
};
|
|
|
|
};
|
2023-07-25 13:25:23 -04:00
|
|
|
outputs = { self, nixpkgs, sops-nix }: {
|
|
|
|
nixosConfigurations.kcnhub = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./machines/kcnhub/configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|