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
|
2021-07-27 14:27:13 +03:00
|
|
|
|
|
|
|
exa
|
2022-09-09 09:23:12 +04:00
|
|
|
jq
|
2021-01-23 22:21:51 +03:00
|
|
|
] ++ lib.optionals config.deviceSpecific.goodMachine [
|
2022-05-30 14:12:15 +04:00
|
|
|
# steamcmd
|
|
|
|
# steam
|
2020-02-17 16:00:59 +03:00
|
|
|
haskellPackages.hoogle
|
|
|
|
nixfmt
|
2022-05-30 14:12:15 +04:00
|
|
|
nixpkgs-fmt
|
2020-02-17 16:00:59 +03:00
|
|
|
stdman
|
|
|
|
libqalculate
|
|
|
|
# Messaging
|
|
|
|
libnotify
|
|
|
|
# Audio/Video
|
2022-04-28 17:49:47 +03:00
|
|
|
mpv
|
2020-02-17 16:00:59 +03:00
|
|
|
vlc
|
2021-03-14 02:20:33 +03:00
|
|
|
pavucontrol
|
2020-02-17 16:00:59 +03:00
|
|
|
# Tools
|
|
|
|
zip
|
2021-08-21 11:07:31 +03:00
|
|
|
plasma-systemmonitor
|
2020-02-17 16:00:59 +03:00
|
|
|
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-07-07 14:44:12 +03:00
|
|
|
ripgrep
|
2022-05-01 16:00:02 +03:00
|
|
|
bat
|
2022-05-03 15:00:07 +03:00
|
|
|
jless
|
2022-07-18 14:19:35 +04:00
|
|
|
|
|
|
|
pandoc
|
|
|
|
codebraid
|
2021-01-23 22:21:51 +03:00
|
|
|
];
|
2020-02-17 16:00:59 +03:00
|
|
|
}
|