NixOS-Config/modules/home/options/default.nix

8 lines
119 B
Nix

{ lib, ... }:
with lib; {
options.home.desktop.enable = mkOption {
type = types.bool;
default = true;
};
}