chore(hyprland): move utility packages to a different file

This commit is contained in:
uku 2024-06-26 19:41:51 +02:00
parent 5719c0d2b4
commit b4c294eb58
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 27 additions and 14 deletions

View file

@ -0,0 +1,20 @@
{pkgs, ...}: {
# utility packages for hyprland, since you know it's not a DE
hm.home.packages = with pkgs; [
gnome.gnome-calculator
mate.eom
nwg-look
pavucontrol
];
programs = {
seahorse.enable = true;
file-roller.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [thunar-volman thunar-archive-plugin];
};
};
}