nichts/hosts/lars/programs.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

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-13 21:31:55 +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
neovim
2024-04-13 21:31:55 +02:00
tmux
kitty
nextcloud-client
vscode
grim
slurp
wl-clipboard
pavucontrol
wofi
2024-04-12 10:34:06 +02:00
];
};
}