packages: insta-wow pkg init
This commit is contained in:
parent
c6d0e010ff
commit
7d683e712f
10 changed files with 188 additions and 47 deletions
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./workstations.nix
|
||||
./servers.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
18
outputs/hosts/servers.nix
Normal file
18
outputs/hosts/servers.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
withSystem,
|
||||
ook,
|
||||
...
|
||||
}: let
|
||||
inherit (ook.lib.builders) mkServer;
|
||||
in {
|
||||
flake.nixosConfigurations = {
|
||||
ooknode = mkServer {
|
||||
inherit withSystem;
|
||||
system = "x86_64-linux";
|
||||
hostname = "ooknode";
|
||||
type = "vm";
|
||||
profile = "linode";
|
||||
services = [];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue