fix(nixos): Add isDesktop option

This commit is contained in:
punkfairie 2025-03-02 09:55:31 -08:00
parent 45120e52e2
commit 914b2b7ed0
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -0,0 +1,7 @@
{lib, ...}: {
options.marleyos.isDesktop = lib.mkOption {
type = with lib.types; bool;
default = false;
description = "Whether this machine is used as a graphical desktop.";
};
}