23 lines
420 B
Nix
23 lines
420 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# utility packages for hyprland, since you know it's not a DE
|
|
environment.systemPackages = 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
|
|
];
|
|
};
|
|
};
|
|
}
|