.dotfiles/.config/home-manager/graphical.nix
Tobias Reisinger ccb5e6660e
Improve configs
fixes, replace exa with eza, update home-manager version
2023-09-10 21:41:00 +02:00

31 lines
1,007 B
Nix

{ config, pkgs, ... }:
{
imports = [
./fonts.nix
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
#alacritty # terminal emulator
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
libsForQt5.kdeconnect-kde # tool to connect a phone to the computer
pavucontrol # Pulseaudio GUI
#python310Packages.adblock # pylib for adblocking in qutebrowser
#python310Packages.pynacl # pylib for qutebrowser-keepassxc support
#(qutebrowser.override { enableWideVine = true; }) # vim-like browser
(ungoogled-chromium.override { enableWideVine = true; }) # browser
#vagrant # tool for automated virtual machines
#virtualbox # tool for virtual machines
xfce.thunar # file manager
xfce.tumbler # thumbnail tool
];
}