Files
Olympus/home-manager/programs/quickshell/default.nix
2025-10-16 17:11:21 -05:00

15 lines
303 B
Nix

{ config, lib, ... }: {
options.homeconfig.quickshell.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
config = lib.mkIf config.homeconfig.quickshell.enable {
programs.quickshell = {
enable = true;
};
};
}