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

8 lines
195 B
Nix
Raw Normal View History

2025-03-02 17:55:31 +00:00
{lib, ...}: {
options.marleyos.isDesktop = lib.mkOption {
type = with lib.types; bool;
default = false;
description = "Whether this machine is used as a graphical desktop.";
};
}