19 lines
488 B
Nix
19 lines
488 B
Nix
{
|
|
description = "sea.fudo.org nixops flake";
|
|
|
|
inputs = { nixpgks = "nixpkgs:nixos-21.05"; };
|
|
|
|
outputs = { nixpkgs, ... }:
|
|
let
|
|
domain = "sea.fudo.org";
|
|
system-pkgs = system: import nixpkgs { inherit system; };
|
|
in {
|
|
nixopsConfigurations.${domain} = {
|
|
inherit nixpkgs;
|
|
network.description = "${domain} network";
|
|
defaults.nixpkgs.pkgs = system-pkgs "x86_64-linux";
|
|
defaults._module.args = { inherit domain; };
|
|
};
|
|
};
|
|
}
|