fix(nixos): Add isDesktop option
This commit is contained in:
parent
45120e52e2
commit
914b2b7ed0
1 changed files with 7 additions and 0 deletions
7
modules/nixos/options/isDesktop/default.nix
Normal file
7
modules/nixos/options/isDesktop/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{lib, ...}: {
|
||||
options.marleyos.isDesktop = lib.mkOption {
|
||||
type = with lib.types; bool;
|
||||
default = false;
|
||||
description = "Whether this machine is used as a graphical desktop.";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue