43 lines
761 B
Nix
43 lines
761 B
Nix
{ pkgs, config, lib, inputs, ... }: {
|
|
home-manager.users.balsoft.home.packages = with pkgs;
|
|
[
|
|
# Internet
|
|
wget
|
|
curl
|
|
unrar
|
|
neochat
|
|
] ++ lib.optionals config.deviceSpecific.goodMachine [
|
|
steamcmd
|
|
steam
|
|
haskellPackages.hoogle
|
|
nixfmt
|
|
niv
|
|
stdman
|
|
libqalculate
|
|
# Messaging
|
|
libnotify
|
|
# Audio/Video
|
|
vlc
|
|
pavucontrol
|
|
# Tools
|
|
zip
|
|
unrar
|
|
ksysguard
|
|
wl-clipboard
|
|
grim
|
|
slurp
|
|
abiword
|
|
gnumeric
|
|
gcalcli
|
|
xdg_utils
|
|
inputs.yt-utilities.defaultPackage.x86_64-linux
|
|
lambda-launcher
|
|
nix-patch
|
|
pass-wayland
|
|
gopass
|
|
papirus-icon-theme
|
|
shellcheck
|
|
proselint
|
|
];
|
|
}
|