Files
home-manager/modules/programs/foot.nix
Austin Horstman 01ea51d706 treewide: use inherit for attribute assignments
This change converts redundant attribute assignments of the form `a =
a;` or `a = someSet.a;` into cleaner `inherit` statements. This reduces
verbosity and follows common Nix style for bringing attributes into
scope.

Statix Codes: W03 (manual_inherit), W04 (manual_inherit_from)

Also include statix and the rule in our configuration.
2026-04-08 14:47:48 -05:00

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