29 lines
778 B
Nix
Executable file
29 lines
778 B
Nix
Executable file
{
|
|
description = "Marauder NixOS Configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
|
phps = {
|
|
url = "github:fossar/nix-phps";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
agenix = {
|
|
url = "github:ryantm/agenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
common.url = "git+https://git.uninsane.org/nettika/nettika-common";
|
|
};
|
|
|
|
outputs = { nixpkgs, phps, common, agenix, ... }:
|
|
let inherit (nixpkgs.lib) nixosSystem;
|
|
in {
|
|
nixosConfigurations = {
|
|
marauder = nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules =
|
|
[ ./hosts/marauder common.nixosModule agenix.nixosModules.default ];
|
|
specialArgs = { inherit phps agenix; };
|
|
};
|
|
};
|
|
};
|
|
}
|