niksos/modules/gui/quickshell/default.nix

25 lines
548 B
Nix
Raw Normal View History

2024-04-13 22:19:45 +02:00
{
config,
inputs,
lib,
pkgs,
...
}: with lib; let
cfg = config.myOptions.programs.quickshell;
2024-04-14 18:49:29 +02:00
inherit (config.myOptions.other.system) username;
2024-04-13 22:19:45 +02:00
in {
options.myOptions.programs.quickshell = {
enable = mkEnableOption "quickshell";
};
config = mkIf cfg.enable {
home-manager.users.${username} = {
home.packages = with pkgs; [
inputs.quickshell.packages.${pkgs.system}.default
# for da poz
qt6.qtsvg
];
};
};
}