72 lines
1.1 KiB
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
2019-09-20 01:39:05 +04:00
sysstat
2019-09-23 14:04:13 +04:00
xdotool
2019-09-14 22:12:56 +04:00
lxqt.pavucontrol-qt
2019-09-22 13:35:49 +04:00
bibata-cursors
2019-09-22 16:40:16 +04:00
i3lock-fancy
2019-09-17 02:27:09 +04:00
# Samba support
cifs-utils
# Utils
2019-09-22 13:35:49 +04:00
nix-prefetch-git
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-17 13:25:18 +04:00
youtube-dl
2019-09-22 01:32:48 +04:00
speedcrunch
feh
setroot
maim
mupdf
2019-09-17 23:07:22 +04:00
] ++ lib.optionals isLaptop [
2019-09-14 22:12:56 +04:00
# Important
acpi
light
2019-09-22 01:32:48 +04:00
powertop
# Other
blueman
2019-09-22 16:40:16 +04:00
] ++ lib.optionals (!isVM) [
libreoffice
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
2019-09-22 01:32:48 +04:00
tdesktop
spotifywm
discord
2019-09-22 16:40:16 +04:00
] ++ lib.optionals (!isVM) [
steam
steam-run
2019-08-27 20:49:08 +00:00
];
}