15 lines
303 B
Nix
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;
|
|
};
|
|
};
|
|
}
|