7 lines
184 B
Nix
7 lines
184 B
Nix
{ config, lib, ... }:
|
|
{
|
|
home-manager.users."${config.vars.mainUser}" = {
|
|
home.guifull.enable = true;
|
|
wayland.windowManager.sway.extraSessionCommands = lib.mkForce "";
|
|
};
|
|
}
|