45 lines
813 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
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
2021-01-14 19:16:50 +03:00
github-cli
2020-02-17 16:00:59 +03:00
# Messaging
libnotify
2020-12-25 15:12:41 +03:00
spectral
2020-02-17 16:00:59 +03:00
# Audio/Video
vlc
lxqt.pavucontrol-qt
# Tools
zip
unrar
ksysguard
wl-clipboard
grim
slurp
abiword
gnumeric
gcalcli
xdg_utils
2020-04-27 20:03:22 +03:00
inputs.yt-utilities.defaultPackage.x86_64-linux
2020-06-21 21:48:26 +03:00
lambda-launcher
nix-patch
2020-05-25 15:30:06 +03:00
pass-wayland
2020-06-21 12:17:20 +03:00
papirus-icon-theme
2020-12-24 15:19:24 +03:00
gnome3.simple-scan
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
}