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