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

12 lines
228 B
Nix
Raw Normal View History

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