nixos-config/home-manager/stvnliu/swaywm.nix
2024-09-19 10:24:14 +03:00

14 lines
237 B
Nix

{
pkgs,
lib,
config,
...
}: {
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
terminal = "${pkgs.foot}/bin/foot -f '${config.desktopFontFullName}:size=24' zsh";
};
};
}