another one :D

This commit is contained in:
cnst
2024-08-03 14:49:44 +02:00
parent e1f070d81a
commit ae9ee0cb35
98 changed files with 60 additions and 53 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!
];
}