Add user packages

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:44:52 +03:00
parent f95e75a3cb
commit 11d2280c7c
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
2 changed files with 47 additions and 0 deletions

View file

@ -32,6 +32,7 @@
inherit pkgs; inherit pkgs;
modules = [ modules = [
./home.nix ./home.nix
./packages.nix
./flatpak.nix ./flatpak.nix
./plasma/plasma.nix ./plasma/plasma.nix

46
home-manager/packages.nix Normal file
View file

@ -0,0 +1,46 @@
{pkgs, ...}: {
home.packages = with pkgs; [
# GUI
filelight
spotify-qt
lxqt.pavucontrol-qt
alacritty
usbimager
kdeplasma-addons
plasma-systemmonitor
# CLI
fzf
neovim
htop
nnn
wl-clipboard
lua
zellij
dig
tealdeer
ncdu
dua
gnupg
spotifyd
mosh
unzip
yt-dlp
usbutils
## Modern replacements of common utilities
eza
fd
bat
procs
ripgrep
delta
# DevOps
podman
slirp4netns
ansible
vagrant
nmap
];
}