9 lines
162 B
Nix
9 lines
162 B
Nix
{...}: {
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
config = rec {
|
|
terminal = "kitty";
|
|
startup = [{command = "firefox";}];
|
|
};
|
|
};
|
|
}
|