1
0
Fork 0
nixos/pkgsets/xpkgs.nix

24 lines
413 B
Nix

{ config, pkgs, ... }:
let
cfg = config.machine;
in {
config.machine.pkgsets.xpkgs.pkgs = with pkgs; [
feh
scrot
theme_flat-remix
theme_sddm_midnight
gnome3.dconf
alacritty
gnome3.gvfs
gvfs
oneko
pcmanfm lxmenu-data shared_mime_info
pavucontrol
xclip
xlibs.xkill
(if (cfg.hostName == "Marid") then xbacklight else xorg.xbacklight)
xdiskusage
];
}