Files
nixos-config/home/common/programs/hyprland/quickshell.nix
T
Miguel Palhas e8086e8528 Several hyprland updates:
plugins, new cursor, light/dark themes, new app launcher, ...
2026-02-16 17:33:40 +00:00

12 lines
215 B
Nix

{ inputs, pkgs, ... }:
{
home.packages = [
inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default
];
xdg.configFile."quickshell" = {
source = ./quickshell;
recursive = true;
};
}