refactor: complete rewrite
This commit is contained in:
parent
19a4bbda3c
commit
8e81943cf9
399 changed files with 3396 additions and 8042 deletions
5
outputs/hosts/default.nix
Normal file
5
outputs/hosts/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./workstations.nix
|
||||
];
|
||||
}
|
||||
22
outputs/hosts/workstations.nix
Normal file
22
outputs/hosts/workstations.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
withSystem,
|
||||
ook,
|
||||
...
|
||||
}: let
|
||||
inherit (ook.lib.builders) mkWorkstation;
|
||||
in {
|
||||
flake.nixosConfigurations = {
|
||||
ookst480s = mkWorkstation {
|
||||
inherit withSystem;
|
||||
system = "x86_64-linux";
|
||||
hostname = "ookst480s";
|
||||
type = "laptop";
|
||||
};
|
||||
ooksdesk = mkWorkstation {
|
||||
inherit withSystem;
|
||||
system = "x86_64-linux";
|
||||
hostname = "ooksdesk";
|
||||
type = "desktop";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue