added quickshell and updated zsh

This commit is contained in:
2026-08-17 23:16:05 -07:00
parent 9bca669f4e
commit 1f3dde6de2
55 changed files with 4251 additions and 381 deletions

25
home/hypr/quickshell.nix Normal file
View File

@@ -0,0 +1,25 @@
{ pkgs, inputs, ... }:
let
quickshellPkg = if (inputs ? quickshell && inputs.quickshell ? packages && inputs.quickshell.packages ? ${pkgs.stdenv.hostPlatform.system})
then inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
else (pkgs.quickshell or pkgs.qt6.qtbase);
in
{
home.packages = with pkgs; [
quickshellPkg
brightnessctl
pamixer
playerctl
libnotify
grim
slurp
wl-clipboard
];
# Link Quickshell configuration into ~/.config/quickshell
xdg.configFile."quickshell" = {
source = ./quickshell;
recursive = true;
};
}