52 lines
814 B
Nix
Raw Normal View History

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
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
2023-01-19 01:07:52 +04:00
nil
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
2022-10-10 17:28:36 +04:00
xdg-utils
2020-06-21 21:48:26 +03:00
lambda-launcher
nix-patch
2021-04-20 18:21:11 +03:00
gopass
2023-02-16 18:51:34 +04:00
# papirus-icon-theme
breeze-icons
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
2023-03-21 16:30:48 +04:00
sioyek
2021-01-23 22:21:51 +03:00
];
2020-02-17 16:00:59 +03:00
}