blob: 321e7e803934b1f79d2a885cf1f911d4bcde3717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
config,
pkgs,
lib,
...
}: let
cfg = config.features.gui.apps.foot;
in {
options.features.gui.apps.foot.enable = lib.mkEnableOption "foot";
config = lib.mkIf cfg.enable {
programs.foot = {
enable = true;
settings = {
main.pad = "0x4";
};
};
};
}
|