blob: d099e161183a327088c5a506a31cec5a5936412a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ 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;
server.enable = true;
settings = {
main.pad = "0x4";
};
};
};
}
|