nichts/hosts/vali/mars/programs.nix

78 lines
1.7 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 22:17:12 +02:00
alacritty
2024-04-12 16:20:03 +02:00
alsa-utils
asciinema
betterbird
2024-04-10 17:39:26 +02:00
bibata-cursors
chromium
2024-04-10 17:39:26 +02:00
dig
2024-04-12 20:45:33 +02:00
easyeffects
2024-04-12 16:20:03 +02:00
element-desktop
2024-04-12 20:45:33 +02:00
eza
ripgrep
2024-04-12 16:20:03 +02:00
fastfetch
2024-04-10 17:39:26 +02:00
(fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
2024-04-12 16:20:03 +02:00
ffmpeg_6-full
foot
2024-04-12 16:20:03 +02:00
gcc
2024-04-10 17:39:26 +02:00
gdb
grimblast
2024-04-12 16:20:03 +02:00
git
httpie
imagemagick
keepassxc
2024-04-10 17:39:26 +02:00
krita
2024-04-12 16:20:03 +02:00
lazygit
libreoffice-fresh
neofetch
neovim
networkmanagerapplet
2024-04-12 20:45:33 +02:00
nextcloud-client
2024-04-12 16:20:03 +02:00
pamixer
pavucontrol
pcmanfm
pfetch
polkit
2024-04-10 17:39:26 +02:00
python3
2024-04-12 16:20:03 +02:00
qbittorrent
2024-04-10 17:39:26 +02:00
rustdesk
2024-04-12 21:36:26 +02:00
rofi
2024-04-12 16:20:03 +02:00
scc
2024-04-10 17:39:26 +02:00
sherlock
2024-04-12 16:20:03 +02:00
signal-desktop-beta
smartmontools
st
steam
2024-04-12 20:45:33 +02:00
strawberry-qt6
2024-04-12 16:20:03 +02:00
telegram-desktop
texliveFull
2024-04-12 19:45:13 +02:00
thunderbird
2024-04-12 16:20:03 +02:00
tor-browser-bundle-bin
trash-cli
tree
unzip
ventoy-full
2024-04-12 20:24:19 +02:00
vesktop
2024-04-12 16:20:03 +02:00
vlc
xclip
yt-dlp
zathura
zip
2024-04-10 17:39:26 +02:00
];
};
2024-04-10 19:21:46 +02:00
}