7 lines
226 B
Nix
7 lines
226 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ./global.nix ];
|
|
|
|
# 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";
|
|
}
|