2023-01-12 20:49:08 +01:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
imports = [
|
2023-05-28 02:00:10 +02:00
|
|
|
./default.nix
|
|
|
|
../desktop/alacritty.nix # Default xmonad terminal
|
2023-01-12 20:49:08 +01:00
|
|
|
];
|
|
|
|
|
2023-05-24 03:17:09 +02:00
|
|
|
# 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";
|
2023-01-10 02:38:06 +01:00
|
|
|
}
|