1
Fork 0
satellite/home/features/xorg/xmonad.nix
2023-05-28 02:00:10 +02:00

10 lines
288 B
Nix

{ pkgs, ... }: {
imports = [
./default.nix
../desktop/alacritty.nix # Default xmonad terminal
];
# Command required to get the xdg stuff to work. Suggested by @lily on discord.
xsession.initExtra = "${pkgs.dbus}/bin/dbus-update-activation-environment --systemd --all";
}