20 lines
272 B
Nix
20 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
|
||
|
];
|
||
|
};
|
||
|
}
|