mirror of
https://github.com/blahai/nyx.git
synced 2025-06-15 08:53:04 -04:00
too much shit idek anymore
This commit is contained in:
parent
14843ef945
commit
bc82345beb
63 changed files with 1759 additions and 346 deletions
15
modules/base/options/device.nix
Normal file
15
modules/base/options/device.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.types) enum;
|
||||
inherit (lib.options) mkOption;
|
||||
in {
|
||||
options.olympus.device.type = mkOption {
|
||||
type = enum [
|
||||
"laptop"
|
||||
"desktop"
|
||||
"server"
|
||||
"hybrid"
|
||||
"vm"
|
||||
];
|
||||
default = "";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue