feat: set all dbus env vars on sway exec

This commit is contained in:
Jacob Bachmann 2024-01-08 21:14:10 +01:00
parent 443bfc497f
commit b1047d2b54
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
5 changed files with 18 additions and 0 deletions

12
modules/sddm.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, config, ... }: with config.bchmnn; lib.mkIf (gui.enable && lib.elem "i3" gui.flavour) {
/*
services.xserver.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
programs.sway.enable = true;
*/
}