From ea894c3d0457a516525495f931571ddf5caa3576 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 20 Aug 2024 12:52:59 +0200 Subject: [PATCH] feat: add wip host abstraction --- hosts/marr/configuration.nix | 5 +++++ options/default.nix | 34 ++++++++++++++++++++++++++++++---- 2 files changed, 35 insertions(+), 4 deletions(-) diff --git a/hosts/marr/configuration.nix b/hosts/marr/configuration.nix index 7221f69..fe3719e 100644 --- a/hosts/marr/configuration.nix +++ b/hosts/marr/configuration.nix @@ -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; diff --git a/options/default.nix b/options/default.nix index 2152cb8..a950c92 100644 --- a/options/default.nix +++ b/options/default.nix @@ -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; + }; + }; + }; }; }