config/modules/rice/sway/default.nix

10 lines
204 B
Nix

{...}: {
wayland.windowManager.sway = {
enable = true;
config = rec {
terminal = "kitty";
startup = [{command = "firefox";}];
};
extraOptions = ["--unsupported-gpu"];
};
}