added mars, vali's desktop

This commit is contained in:
vali 2024-04-12 14:41:59 +02:00
commit 47264425ea
7 changed files with 5 additions and 4 deletions

View file

@ -0,0 +1,68 @@
{ config, inputs, pkgs, ... }:
let
username = config.myOptions.other.system.username;
in {
home-manager.users.${username} = {
home.packages = let
fenix = inputs.fenix.packages.${pkgs.system};
in with pkgs; [
pfetch
git
keepassxc
eza ripgrep
signal-desktop-beta
element-desktop
steam
tor-browser-bundle-bin
betterbird
telegram-desktop
libreoffice-fresh
qbittorrent
ventoy-full
lazygit
neofetch
zip
vlc
zathura
alacritty
scc
texliveFull
st
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
neovim
];
};
}