23 lines
633 B
Nix
Executable file
23 lines
633 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";
|
|
};
|
|
common.url = "git+https://git.uninsane.org/nettika/nettika-common";
|
|
};
|
|
|
|
outputs = { nixpkgs, phps, common, ... }: {
|
|
nixosConfigurations.marauder = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./configuration.nix common.nixosModule ];
|
|
specialArgs = {
|
|
inherit phps;
|
|
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
|
};
|
|
};
|
|
};
|
|
}
|