mirror of
https://github.com/blahai/nyx.git
synced 2025-06-07 15:43:03 -04:00
Nyx: add quickshell
This commit is contained in:
parent
051f9a4a6e
commit
3eb282fb23
4 changed files with 92 additions and 33 deletions
|
@ -3,6 +3,7 @@
|
|||
./cli/default.nix
|
||||
./hypr/default.nix
|
||||
./ags/default.nix
|
||||
./quickshell/default.nix
|
||||
./spotify/default.nix
|
||||
];
|
||||
}
|
||||
|
|
32
modules/home-manager/quickshell/default.nix
Normal file
32
modules/home-manager/quickshell/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
(inputs.quickshell.packages.${pkgs.system}.default.override
|
||||
{
|
||||
withJemalloc = true;
|
||||
withQtSvg = true;
|
||||
withWayland = true;
|
||||
withX11 = false;
|
||||
withPipewire = true;
|
||||
withPam = true;
|
||||
withHyprland = true;
|
||||
withI3 = false;
|
||||
})
|
||||
swww
|
||||
fd
|
||||
wl-clipboard
|
||||
cliphist
|
||||
brightnessctl
|
||||
slurp
|
||||
pwvucontrol
|
||||
libnotify
|
||||
|
||||
kdePackages.full
|
||||
kdePackages.qtdeclarative
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue