marleyos/modules/home/options/isDesktop/default.nix
punkfairie 15372b7726
feat: ${namespace} -> marleyos
There was little point to doing this anyway as project-wide find &
replace is trivial.
2024-11-16 22:36:34 -08:00

11 lines
228 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options.marleyos.isDesktop = mkOption {
type = with types; bool;
default = false;
description = "Whether this machine is used as a graphical desktop.";
};
}