2020-04-27 18:48:28 +03:00
|
|
|
{ pkgs, config, lib, inputs, ... }: {
|
2020-05-20 18:41:56 +03:00
|
|
|
home-manager.users.balsoft.home.packages = with pkgs;
|
2020-02-17 16:00:59 +03:00
|
|
|
[
|
|
|
|
# Internet
|
|
|
|
wget
|
|
|
|
curl
|
|
|
|
unrar
|
2021-01-13 14:24:22 +03:00
|
|
|
neochat
|
2021-01-23 22:21:51 +03:00
|
|
|
] ++ lib.optionals config.deviceSpecific.goodMachine [
|
2020-02-17 16:00:59 +03:00
|
|
|
steamcmd
|
|
|
|
steam
|
|
|
|
haskellPackages.hoogle
|
|
|
|
nixfmt
|
|
|
|
niv
|
|
|
|
stdman
|
|
|
|
libqalculate
|
|
|
|
# Messaging
|
|
|
|
libnotify
|
|
|
|
# Audio/Video
|
|
|
|
vlc
|
2021-03-14 02:20:33 +03:00
|
|
|
pavucontrol
|
2020-02-17 16:00:59 +03:00
|
|
|
# Tools
|
|
|
|
zip
|
|
|
|
unrar
|
|
|
|
ksysguard
|
|
|
|
wl-clipboard
|
|
|
|
grim
|
|
|
|
slurp
|
|
|
|
abiword
|
|
|
|
gnumeric
|
|
|
|
gcalcli
|
|
|
|
xdg_utils
|
2020-06-21 21:48:26 +03:00
|
|
|
lambda-launcher
|
|
|
|
nix-patch
|
2021-04-20 18:21:11 +03:00
|
|
|
gopass
|
2020-06-21 12:17:20 +03:00
|
|
|
papirus-icon-theme
|
2021-01-27 17:52:05 +03:00
|
|
|
shellcheck
|
|
|
|
proselint
|
2021-01-23 22:21:51 +03:00
|
|
|
];
|
2020-02-17 16:00:59 +03:00
|
|
|
}
|