another small reorg

This commit is contained in:
cnst
2024-08-03 14:59:44 +02:00
parent ae9ee0cb35
commit e6f172ea43
64 changed files with 18 additions and 11 deletions

View File

@@ -0,0 +1,34 @@
{pkgs, ...}: {
programs = {
# image viewer
feh = {
enable = true;
};
# system information
fastfetch = {
enable = true;
};
# a monitor of resources
btop = {
enable = true;
settings = {
color_theme = "gruvbox_material_dark";
};
};
};
home.packages = with pkgs; [
file-roller # archiver
gnome-calculator
nwg-look # GTK settings
hyprpicker # Color picker
pavucontrol # GUI sound control
pamixer # TUI sound control
keepassxc
calcurse # calendar
grimblast # screenshot
slurp # select region for screenshot
qbittorrent
networkmanagerapplet # tray icon for NetworkManager
usbimager # write bootable usb images!
];
}