12 lines
243 B
Nix
12 lines
243 B
Nix
|
{ lib, namespace, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
{
|
||
|
options.${namespace}.isDesktop = mkOption {
|
||
|
type = with types; bool;
|
||
|
default = false;
|
||
|
description = "Whether this machine is used as a graphical desktop.";
|
||
|
};
|
||
|
}
|