1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/modules/programs/foot.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

78 lines
1.9 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.foot;
iniFormat = pkgs.formats.ini { listsAsDuplicateKeys = true; };
in
{
meta.maintainers = with lib.maintainers; [ plabadens ];
options.programs.foot = {
enable = lib.mkEnableOption "Foot terminal";
package = lib.mkPackageOption pkgs "foot" { };
server.enable = lib.mkEnableOption "Foot terminal server";
settings = lib.mkOption {
type = iniFormat.type;
default = { };
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/foot/foot.ini`. See <https://codeberg.org/dnkl/foot/src/branch/master/foot.ini>
for a list of available options.
'';
example = lib.literalExpression ''
{
main = {
term = "xterm-256color";
font = "Fira Code:size=11";
dpi-aware = "yes";
};
mouse = {
hide-when-typing = "yes";
};
}
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "programs.foot" pkgs lib.platforms.linux)
];
home.packages = [ cfg.package ];
xdg.configFile."foot/foot.ini" = lib.mkIf (cfg.settings != { }) {
source = iniFormat.generate "foot.ini" cfg.settings;
};
systemd.user.services = lib.mkIf cfg.server.enable {
foot = {
Unit = {
Description = "Fast, lightweight and minimalistic Wayland terminal emulator.";
Documentation = "man:foot(1)";
PartOf = [ "graphical-session.target" ];
After = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${cfg.package}/bin/foot --server";
Restart = "on-failure";
OOMPolicy = "continue";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
};
};
}