26 lines
340 B
Nix
26 lines
340 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.machine;
|
|
in {
|
|
config.machine.pkgsets.xpkgs.pkgs = with pkgs; [
|
|
acpilight
|
|
feh
|
|
scrot
|
|
theme_sddm_midnight
|
|
dconf
|
|
alacritty
|
|
gnome3.gvfs
|
|
gvfs
|
|
oneko
|
|
pcmanfm
|
|
lxmenu-data
|
|
shared-mime-info
|
|
pavucontrol
|
|
xclip
|
|
xorg.xkill
|
|
xdiskusage
|
|
];
|
|
}
|