feat: add wip host abstraction
This commit is contained in:
parent
4533c3edec
commit
ea894c3d04
2 changed files with 35 additions and 4 deletions
|
@ -14,6 +14,11 @@
|
|||
./home.nix
|
||||
];
|
||||
|
||||
device.type = {
|
||||
graphical.enable = true;
|
||||
workstation.enable = true;
|
||||
gaming.enable = true;
|
||||
};
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
|
|
@ -1,7 +1,33 @@
|
|||
{ lib, ... }:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
options.custom.pubKey = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "";
|
||||
options = {
|
||||
device = {
|
||||
type = {
|
||||
gaming.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
graphical.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
workstation.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
server.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
vm.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue