nixos/modules/sway.nix

12 lines
191 B
Nix

{ config, lib, pkgs, nixos-unstable, inputs, ... }:
{
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
terminal = "kitty";
};
};
}