19 lines
300 B
Nix
19 lines
300 B
Nix
{ pkgs, home-manager, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
vesktop
|
|
gparted
|
|
polkit_gnome
|
|
|
|
# For Hyprland hotkeys:
|
|
brightnessctl
|
|
playerctl
|
|
hyprshot
|
|
waybar
|
|
|
|
# to better find execs
|
|
nix-index
|
|
nix-output-monitor
|
|
expect # for the unbuffer command
|
|
];
|
|
}
|