2024-04-12 10:34:06 +02:00
|
|
|
{ config, inputs, pkgs, ... }:
|
|
|
|
let
|
2024-04-12 22:03:29 +02:00
|
|
|
username = config.modules.other.system.username;
|
2024-04-12 10:34:06 +02:00
|
|
|
in {
|
|
|
|
home-manager.users.${username} = {
|
|
|
|
home.packages = let
|
|
|
|
fenix = inputs.fenix.packages.${pkgs.system};
|
|
|
|
|
|
|
|
in with pkgs; [
|
2024-04-13 21:31:55 +02:00
|
|
|
neofetch
|
2024-04-12 10:34:06 +02:00
|
|
|
git
|
2024-04-13 21:31:55 +02:00
|
|
|
trash-cli
|
2024-04-12 10:34:06 +02:00
|
|
|
element-desktop
|
|
|
|
steam
|
|
|
|
libreoffice-fresh
|
|
|
|
ventoy-full
|
|
|
|
lazygit
|
2024-04-14 23:11:54 +02:00
|
|
|
obsidian
|
2024-04-12 10:34:06 +02:00
|
|
|
neofetch
|
|
|
|
zip
|
|
|
|
vlc
|
|
|
|
zathura
|
|
|
|
unzip
|
|
|
|
gcc
|
|
|
|
bibata-cursors
|
|
|
|
networkmanagerapplet
|
|
|
|
xclip
|
|
|
|
pamixer
|
|
|
|
pcmanfm
|
|
|
|
ffmpeg_6-full
|
|
|
|
(fenix.complete.withComponents [
|
|
|
|
"cargo"
|
|
|
|
"clippy"
|
|
|
|
"rust-src"
|
|
|
|
"rustc"
|
|
|
|
"rustfmt"
|
|
|
|
])
|
|
|
|
polkit
|
|
|
|
fastfetch
|
|
|
|
alsa-utils
|
|
|
|
gdb
|
|
|
|
tree
|
|
|
|
smartmontools
|
|
|
|
python3
|
|
|
|
rustdesk
|
2024-04-13 21:31:55 +02:00
|
|
|
tmux
|
|
|
|
kitty
|
|
|
|
nextcloud-client
|
|
|
|
vscode
|
|
|
|
grim
|
|
|
|
slurp
|
|
|
|
wl-clipboard
|
|
|
|
pavucontrol
|
|
|
|
wofi
|
2024-04-14 21:11:01 +02:00
|
|
|
dolphin
|
|
|
|
xdg-utils # xdg-mime script
|
2024-04-14 23:11:54 +02:00
|
|
|
webcord
|
|
|
|
element-desktop
|
2024-04-16 11:33:53 +02:00
|
|
|
swww
|
2024-04-15 11:36:17 +02:00
|
|
|
toipe
|
2024-04-16 11:33:53 +02:00
|
|
|
keepassxc
|
2024-04-16 20:25:10 +02:00
|
|
|
vivaldi
|
2024-04-12 10:34:06 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|