nixos-config/hosts/detritus/user/default.nix
2025-05-13 04:04:30 -04:00

11 lines
306 B
Nix

{ config, lib, ... }:
{
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";
};
}