marleyos/modules/home/options/isDesktop/default.nix

8 lines
195 B
Nix
Raw Normal View History

{lib, ...}: {
options.marleyos.isDesktop = lib.mkOption {
type = with lib.types; bool;
2024-11-15 21:55:47 -08:00
default = false;
description = "Whether this machine is used as a graphical desktop.";
};
}