11 lines
215 B
Nix
11 lines
215 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home-manager.users."${config.vars.mainUser}" = {
|
|
home = {
|
|
desktop.enable = true;
|
|
gaming.enable = true;
|
|
};
|
|
|
|
wayland.windowManager.sway.package = pkgs.swayfx;
|
|
};
|
|
}
|