Files
home-manager/modules/programs/swayimg.nix
Austin Horstman 01ea51d706 treewide: use inherit for attribute assignments
This change converts redundant attribute assignments of the form `a =
a;` or `a = someSet.a;` into cleaner `inherit` statements. This reduces
verbosity and follows common Nix style for bringing attributes into
scope.

Statix Codes: W03 (manual_inherit), W04 (manual_inherit_from)

Also include statix and the rule in our configuration.
2026-04-08 14:47:48 -05:00

56 lines
1.2 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.swayimg;
iniFormat = pkgs.formats.ini { };
in
{
meta.maintainers = with lib.maintainers; [ dod-101 ];
options.programs.swayimg = {
enable = lib.mkEnableOption "swayimg";
package = lib.mkPackageOption pkgs "swayimg" { };
settings = lib.mkOption {
inherit (iniFormat) type;
default = { };
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/swayimg/config`. See <https://github.com/artemsen/swayimg/blob/master/extra/swayimgrc> for a list of available options.
'';
example = lib.literalExpression ''
{
viewer = {
window = "#10000010";
scale = "fill";
};
"info.viewer" = {
top_left = "+name,+format";
};
"keys.viewer" = {
"Shift+r" = "rand_file";
};
}
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "programs.swayimg" pkgs lib.platforms.linux)
];
home.packages = [ cfg.package ];
xdg.configFile."swayimg/config" = lib.mkIf (cfg.settings != { }) {
source = iniFormat.generate "config" cfg.settings;
};
};
}