nixos-config/home-manager/stvnliu/swaywm.nix

13 lines
216 B
Nix

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