1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 16:41:04 +01:00
home-manager/modules/programs/imv.nix
Austin Horstman 0b491b460f
treewide: remove with lib (#6735)
Continuation of `with lib;` cleanup.
2025-03-31 22:32:16 -05:00

45 lines
1.1 KiB
Nix

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