2024-04-10 17:39:26 +02:00
|
|
|
{ config, inputs, pkgs, ... }:
|
|
|
|
let
|
2024-04-10 19:42:28 +02:00
|
|
|
username = config.myOptions.other.system.username;
|
2024-04-10 19:21:46 +02:00
|
|
|
in {
|
2024-04-10 17:39:26 +02:00
|
|
|
home-manager.users.${username} = {
|
|
|
|
home.packages = let
|
2024-04-10 19:42:28 +02:00
|
|
|
fenix = inputs.fenix.packages.${pkgs.system};
|
2024-04-10 17:39:26 +02:00
|
|
|
|
|
|
|
in with pkgs; [
|
2024-04-10 19:31:40 +02:00
|
|
|
pfetch
|
2024-04-10 17:39:26 +02:00
|
|
|
git
|
|
|
|
keepassxc
|
|
|
|
eza ripgrep
|
|
|
|
signal-desktop-beta
|
|
|
|
element-desktop
|
|
|
|
steam
|
|
|
|
tor-browser-bundle-bin
|
|
|
|
betterbird
|
|
|
|
telegram-desktop
|
|
|
|
libreoffice-fresh
|
|
|
|
qbittorrent
|
|
|
|
ventoy-full
|
|
|
|
zip
|
|
|
|
unzip
|
|
|
|
gcc
|
|
|
|
trash-cli
|
|
|
|
bibata-cursors
|
|
|
|
networkmanagerapplet
|
|
|
|
xclip
|
|
|
|
pamixer
|
|
|
|
dig
|
|
|
|
pcmanfm
|
|
|
|
ffmpeg_6-full
|
|
|
|
yt-dlp
|
|
|
|
(fenix.complete.withComponents [
|
|
|
|
"cargo"
|
|
|
|
"clippy"
|
|
|
|
"rust-src"
|
|
|
|
"rustc"
|
|
|
|
"rustfmt"
|
|
|
|
])
|
|
|
|
polkit
|
|
|
|
asciinema
|
|
|
|
fastfetch
|
|
|
|
alsa-utils
|
|
|
|
imagemagick
|
|
|
|
pavucontrol
|
|
|
|
gdb
|
|
|
|
tree
|
|
|
|
smartmontools
|
|
|
|
krita
|
|
|
|
python3
|
|
|
|
rustdesk
|
|
|
|
httpie
|
|
|
|
sherlock
|
|
|
|
strawberry
|
2024-04-10 19:31:40 +02:00
|
|
|
neovim
|
2024-04-10 17:39:26 +02:00
|
|
|
];
|
|
|
|
};
|
2024-04-10 19:21:46 +02:00
|
|
|
}
|