refactor(flake): no import =
This commit is contained in:
parent
016c6ec3a6
commit
e888ebe69c
2 changed files with 42 additions and 39 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ inputs, nixpkgs, self, ... }:
|
||||
{ inputs, self, ... }:
|
||||
|
||||
let
|
||||
inherit (nixpkgs.lib) nixosSystem;
|
||||
inherit (inputs.nixpkgs.lib) nixosSystem;
|
||||
|
||||
hm = inputs.home-manager.nixosModules.home-manager;
|
||||
|
||||
|
|
@ -20,39 +20,41 @@ let
|
|||
in
|
||||
|
||||
{
|
||||
ooksdesk = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ooksdesk"
|
||||
hm
|
||||
base
|
||||
gaming
|
||||
workstation
|
||||
];
|
||||
};
|
||||
ookst480s = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ookst480s"
|
||||
hm
|
||||
base
|
||||
flake.nixosConfigurations = {
|
||||
ooksdesk = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ooksdesk"
|
||||
hm
|
||||
base
|
||||
gaming
|
||||
workstation
|
||||
];
|
||||
};
|
||||
ookst480s = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ookst480s"
|
||||
hm
|
||||
base
|
||||
|
||||
workstation
|
||||
];
|
||||
};
|
||||
ooksmedia = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ooksmedia"
|
||||
hm
|
||||
base
|
||||
workstation
|
||||
];
|
||||
};
|
||||
ooksmedia = nixosSystem {
|
||||
inherit specialArgs;
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
"${hosts}/ooksmedia"
|
||||
hm
|
||||
base
|
||||
|
||||
gaming
|
||||
workstation
|
||||
media-server
|
||||
];
|
||||
gaming
|
||||
workstation
|
||||
media-server
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue