nichts/hosts/lars/programs.nix

58 lines
1.1 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; [
neofetch
git
trash-cli
element-desktop
steam
libreoffice-fresh
ventoy-full
lazygit
2024-04-12 14:33:26 +02:00
obsidian
2024-04-12 10:34:06 +02:00
neofetch
zip
vlc
zathura
alacritty
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-12 12:01:05 +02:00
tmux
2024-04-12 14:33:26 +02:00
kitty
2024-04-13 09:32:56 +02:00
nextcloud-client
vscode
2024-04-12 19:30:10 +02:00
grim
slurp
wl-clipboard
2024-04-12 10:34:06 +02:00
];
};
}