nix/modules/wm/foot/default.nix

25 lines
405 B
Nix
Raw Normal View History

2024-11-24 21:35:15 +01:00
{
lib,
config,
username,
...
}: {
options = {
foot.enable = lib.mkEnableOption "";
};
config = lib.mkIf config.foot.enable {
home-manager.users.${username} = {
programs.foot = {
enable = true;
settings = {
main = {
pad = "2x2";
2024-11-27 11:26:28 +01:00
font = lib.mkForce "RobotoMono Nerd Font:size=12";
2024-11-24 21:35:15 +01:00
};
};
};
};
};
}