Files
Olympus/home-manager/programs/quickshell/default.nix
2025-11-08 12:24:02 -06:00

15 lines
310 B
Nix

{ config, lib, pkgs-us, ... }: {
options.homeconfig.quickshell.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
config = lib.mkIf config.homeconfig.quickshell.enable {
home.packages = [
pkgs-us.quickshell
];
};
}