19 lines
272 B
Nix
19 lines
272 B
Nix
let
|
|
pkgs = import ./nixpkgs {};
|
|
in
|
|
{
|
|
network = {
|
|
description = "wolfgirl.systems";
|
|
inherit pkgs;
|
|
};
|
|
|
|
"stella" = { pkgs, ... }: {
|
|
deployment = {
|
|
targetHost = "198.8.59.4";
|
|
};
|
|
imports = [
|
|
./hosts/stella.nix
|
|
./common
|
|
];
|
|
};
|
|
}
|