config/modules/rice/sway/default.nix

11 lines
204 B
Nix
Raw Normal View History

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