22 lines
371 B
Nix
22 lines
371 B
Nix
{ pkgs, home-manager, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Discord
|
|
vesktop
|
|
# Partition Management
|
|
gparted
|
|
# Authentication agent
|
|
polkit_gnome
|
|
|
|
# For Hyprland hotkeys:
|
|
# control backlight
|
|
brightnessctl
|
|
# control media players
|
|
playerctl
|
|
# make screenshots
|
|
hyprshot
|
|
|
|
# to better find execs
|
|
nix-index
|
|
];
|
|
}
|