nixos/home-manager/sway.nix
2023-10-29 17:33:08 -04:00

12 lines
241 B
Nix

wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "kitty";
startup = [
# Launch Firefox on start
{command = "firefox";}
];
};
};