nixos/network.nix

29 lines
441 B
Nix
Raw Normal View History

2024-09-26 09:44:39 +00:00
let
pkgs = import ./nixpkgs {};
in
{
network = {
description = "wolfgirl.systems";
inherit pkgs;
};
"stella" = { pkgs, ... }: {
deployment = {
2024-09-27 21:15:57 +00:00
targetHost = "stella.wolfgirl.systems";
2024-09-26 09:44:39 +00:00
};
imports = [
./hosts/stella.nix
./common
];
};
2024-09-28 23:43:27 +00:00
"nova" = { pkgs, ... }: {
deployment = {
targetHost = "193.57.159.93";
};
imports = [
./hosts/nova.nix
./common
];
};
2024-09-26 09:44:39 +00:00
}