feat(home): Add isDesktop

This commit is contained in:
punkfairie 2024-11-15 21:55:47 -08:00
parent f5b7a2c71e
commit 377e5a37d2
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696

View file

@ -0,0 +1,11 @@
{ 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.";
};
}