feat: add wip host abstraction

This commit is contained in:
Nydragon 2024-08-20 12:52:59 +02:00
parent 4533c3edec
commit ea894c3d04
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 35 additions and 4 deletions

View file

@ -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;

View file

@ -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;
};
};
};
};
}