9 lines
191 B
Nix
9 lines
191 B
Nix
|
{ lib, ... }:
|
||
|
with lib; {
|
||
|
options.home.desktop.enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = true;
|
||
|
description = "Enable desktop apps and services, but home-manager";
|
||
|
};
|
||
|
}
|