derped
88538f6e68
- emacsPackagesNgGen -> emacsPackagesFor - font-awesome-ttf -> font-awesome - shared_mime_info -> shared-mime-info - telnet -> inetutils - xlibs -> xorg
23 lines
405 B
Nix
23 lines
405 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.machine;
|
|
in {
|
|
config.machine.pkgsets.xpkgs.pkgs = with pkgs; [
|
|
feh
|
|
scrot
|
|
theme_flat-remix
|
|
theme_sddm_midnight
|
|
dconf
|
|
alacritty
|
|
gnome3.gvfs
|
|
gvfs
|
|
oneko
|
|
pcmanfm lxmenu-data shared-mime-info
|
|
pavucontrol
|
|
xclip
|
|
xorg.xkill
|
|
(if (cfg.hostName == "Marid") then xbacklight else xorg.xbacklight)
|
|
xdiskusage
|
|
];
|
|
}
|