8 lines
195 B
Nix
8 lines
195 B
Nix
|
{lib, ...}: {
|
||
|
options.marleyos.isDesktop = lib.mkOption {
|
||
|
type = with lib.types; bool;
|
||
|
default = false;
|
||
|
description = "Whether this machine is used as a graphical desktop.";
|
||
|
};
|
||
|
}
|