Files
nix-config/homeConfigs/modules/wayland/packages.nix
tomoron 5e54902447
All checks were successful
Build iso when a new version is pushed / test (push) Successful in 1m59s
update flake, rofi changes, start powerManagement scripts with sudo
2025-09-21 02:11:55 +02:00

13 lines
171 B
Nix

{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.mods.hyprland.enable {
home.packages = with pkgs; [
grim
slurp
wl-clipboard
swaybg
];
};
}