2021-05-14 22:42:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.foot;
|
|
|
|
iniFormat = pkgs.formats.ini { };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = with lib.maintainers; [ plabadens ];
|
|
|
|
|
|
|
|
options.programs.foot = {
|
|
|
|
enable = mkEnableOption "Foot terminal";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.foot;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.foot";
|
2021-05-14 22:42:00 +02:00
|
|
|
description = "The foot package to install";
|
|
|
|
};
|
|
|
|
|
|
|
|
server.enable = mkEnableOption "Foot terminal server";
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = iniFormat.type;
|
|
|
|
default = { };
|
|
|
|
description = ''
|
|
|
|
Configuration written to
|
|
|
|
<filename>$XDG_CONFIG_HOME/foot/foot.ini</filename>. See <link
|
|
|
|
xlink:href="https://codeberg.org/dnkl/foot/src/branch/master/foot.ini"/>
|
|
|
|
for a list of available options.
|
|
|
|
'';
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-05-14 22:42:00 +02:00
|
|
|
{
|
|
|
|
main = {
|
|
|
|
term = "xterm-256color";
|
|
|
|
|
|
|
|
font = "Fira Code:size=11";
|
|
|
|
dpi-aware = "yes";
|
|
|
|
};
|
|
|
|
|
|
|
|
mouse = {
|
|
|
|
hide-when-typing = "yes";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions =
|
|
|
|
[ (hm.assertions.assertPlatform "programs.foot" pkgs platforms.linux) ];
|
|
|
|
|
2021-05-14 22:42:00 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
2021-07-01 20:05:37 +02:00
|
|
|
xdg.configFile."foot/foot.ini" = mkIf (cfg.settings != { }) {
|
2021-05-14 22:42:00 +02:00
|
|
|
source = iniFormat.generate "foot.ini" cfg.settings;
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.services = 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";
|
2022-02-22 20:15:28 +01:00
|
|
|
OOMPolicy = "continue";
|
2021-05-14 22:42:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|