23 lines
605 B
Nix
23 lines
605 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
|
|
libsForQt5.kdeconnect-kde # tool to connect a phone to the computer
|
|
pavucontrol # Pulseaudio GUI
|
|
xfce.thunar # file manager
|
|
xfce.tumbler # thumbnail tool
|
|
];
|
|
}
|