.dotfiles/.config/home-manager/graphical.nix
2025-09-20 01:41:55 +02:00

23 lines
606 B
Nix

{ config, pkgs, ... }:
{
imports = [
./fonts.nix
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
bemenu # tool to display menus
dunst # notification-daemon
feh # image viewer and wallpaper-tool
firefox # browser
flameshot # screenshot tool
gspell # spell highlighting for gtk applications
j4-dmenu-desktop # collects .desktop files for a menu
keepassxc # password manager
kdePackages.kdeconnect-kde # tool to connect a phone to the computer
pavucontrol # Pulseaudio GUI
xfce.thunar # file manager
xfce.tumbler # thumbnail tool
];
}