39 lines
633 B
Nix
Raw Normal View History

2019-08-27 20:49:08 +00:00
{ pkgs, config, lib, ... }: {
# programs.adb.enable = true;
environment.systemPackages = with pkgs; [
2019-09-14 22:12:56 +04:00
# Important
2019-08-27 20:49:08 +00:00
rxvt_unicode
curl
2019-09-14 22:12:56 +04:00
xfce4-14.thunar
xfce4-14.xfce4-taskmanager
xclip
bc
lxqt.pavucontrol-qt
git
# Other
(vivaldi.override { proprietaryCodecs = true; })
wget
2019-08-27 20:49:08 +00:00
gparted
neofetch
bashmount
p7zip
zip
ranger
2019-09-15 00:28:41 +04:00
tdesktop
2019-09-14 22:12:56 +04:00
] ++ lib.optionals config.deviceSpecific.isLaptop [
# Important
acpi
light
2019-08-27 20:49:08 +00:00
];
2019-09-11 17:17:56 +04:00
home-manager.users.alukard.home.packages = with pkgs; [
2019-08-27 20:49:08 +00:00
nix-zsh-completions
qbittorrent
vscodium
xarchiver
];
}