54 lines
882 B
Nix
Raw Normal View History

2019-09-17 23:07:22 +04:00
{ pkgs, config, lib, ... }:
with rec {
inherit (config) deviceSpecific;
};
with deviceSpecific; {
2019-08-27 20:49:08 +00:00
# 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
2019-09-17 02:27:09 +04:00
# Samba support
cifs-utils
# Utils
2019-09-18 01:59:22 +04:00
hdparm
2019-09-17 02:27:09 +04:00
vdpauinfo
libva-utils
lm_sensors
2019-09-17 16:48:19 +04:00
libnotify
2019-09-17 23:07:22 +04:00
(youtube-to-mpv.override { isLaptop = isLaptop; })
2019-09-14 22:12:56 +04:00
# 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-17 02:27:09 +04:00
spotifywm
2019-09-17 13:25:18 +04:00
youtube-dl
2019-09-17 23:07:22 +04:00
] ++ lib.optionals isLaptop [
2019-09-14 22:12:56 +04:00
# 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
];
}