nichts/hosts/vali/mars/programs.nix

69 lines
1.5 KiB
Nix
Raw Normal View History

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
2024-04-10 20:46:23 +02:00
lazygit
neofetch
2024-04-10 17:39:26 +02:00
zip
2024-04-10 21:37:26 +02:00
vlc
2024-04-10 22:17:12 +02:00
zathura
alacritty
scc
2024-04-11 00:02:27 +02:00
texliveFull
st
2024-04-10 17:39:26 +02:00
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
}