nixos-config/home-manager/stvnliu/swaywm.nix
Zhongheng Liu 4fe4ebefc8 feat: decent shell configuration with starship and zsh
direnv and devenv integrated support
experimental nginx test configuration
sway and foot configuration updated
created initial sddm configuration for login manager
2024-08-01 18:05:58 +08:00

10 lines
194 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";
};
};
}