NixOS-Config/modules/home/options/default.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";
};
}