22 lines
326 B
Nix
22 lines
326 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
|
|
];
|
|
}
|