depot/third_party/home-manager/modules/programs/imv.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

46 lines
1 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.imv;
toConfig = attrs:
''
# Generated by Home Manager.
'' + generators.toINI { } attrs;
in {
meta.maintainers = [ maintainers.christoph-heiss ];
options.programs.imv = {
enable = mkEnableOption
"imv: a command line image viewer intended for use with tiling window managers";
package = mkPackageOption pkgs "imv" { };
settings = mkOption {
default = { };
type = with types; attrsOf (attrsOf (oneOf [ bool int str ]));
description = ''
Configuration options for imv. See
{manpage}`imv(5)`.
'';
example = literalExpression ''
{
options.background = "ffffff";
aliases.x = "close";
}
'';
};
};
config = mkIf cfg.enable {
assertions =
[ (hm.assertions.assertPlatform "programs.imv" pkgs platforms.linux) ];
home.packages = [ cfg.package ];
xdg.configFile =
mkIf (cfg.settings != { }) { "imv/config".text = toConfig cfg.settings; };
};
}