Add more Detritus

This commit is contained in:
Bun 2025-05-13 04:04:30 -04:00
parent ca2d6e4091
commit b7c5651306
10 changed files with 21 additions and 17 deletions

View file

@ -1,7 +1,11 @@
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
guifull.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
home-manager.users."${config.sysusers.main}" = {
home = {
guifull.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
wayland.windowManager.sway.extraSessionCommands = lib.mkForce "export ELECTRON_OZONE_PLATFORM_HINT=wayland";
};
}