Files
nixos-configs/hosts/pinwheel/modules/foot/default.nix
2023-09-09 10:51:00 +02:00

24 lines
408 B
Nix

{ 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"
];
};
};
};
}