Files
nixos-configs/hosts/pinwheel/modules/foot/default.nix
2023-08-26 17:00:57 +02:00

24 lines
426 B
Nix

{ home-manager, pkgs, ... }:
{
home-manager.users.alex = {
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "DejaVuSansM Nerd Font Mono:size=14";
};
};
};
wayland.windowManager.hyprland = {
settings = {
bind = [
"$mod, RETURN, exec, ${pkgs.foot}/bin/foot"
];
};
};
};
}