punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
11 lines
228 B
Nix
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.";
|
|
};
|
|
}
|