2024-11-16 22:34:40 -08:00
|
|
|
{ lib, ... }:
|
2024-11-15 21:55:47 -08:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
in
|
|
|
|
{
|
2024-11-16 22:34:40 -08:00
|
|
|
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.";
|
|
|
|
};
|
|
|
|
}
|