nixos-config/modules/home/options/default.nix
2024-12-09 23:07:20 -05:00

7 lines
119 B
Nix

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