feat: set all dbus env vars on sway exec
This commit is contained in:
parent
443bfc497f
commit
b1047d2b54
5 changed files with 18 additions and 0 deletions
|
|
@ -67,6 +67,7 @@
|
|||
./power.nix
|
||||
./packages.nix
|
||||
./printing.nix
|
||||
./sddm.nix
|
||||
./security.nix
|
||||
./shell.nix
|
||||
./steam.nix
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
expect # contains 'unbuffer'
|
||||
jq # parse json
|
||||
unzip
|
||||
libsecret
|
||||
] ++ lib.optionals (devenv.enable) [
|
||||
# languages
|
||||
gcc13
|
||||
|
|
|
|||
12
modules/sddm.nix
Normal file
12
modules/sddm.nix
Normal 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;
|
||||
*/
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue