nixos/modules/gui/sway.nix

12 lines
191 B
Nix
Raw Permalink Normal View History

2024-06-13 13:11:41 -08:00
{ config, lib, pkgs, nixos-unstable, inputs, ... }:
{
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
terminal = "kitty";
};
};
}