mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Reduce maintenance burden and increase efficiency by automatically importing modules following a specific convention. Co-authored-by: awwpotato <awwpotato@voidq.com> Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
inherit (lib)
|
|
literalExpression
|
|
mkEnableOption
|
|
mkPackageOption
|
|
mkOption
|
|
mkIf
|
|
;
|
|
|
|
cfg = config.programs.fuzzel;
|
|
|
|
iniFormat = pkgs.formats.ini { };
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.Scrumplex ];
|
|
|
|
options.programs.fuzzel = {
|
|
enable = mkEnableOption "fuzzel";
|
|
|
|
package = mkPackageOption pkgs "fuzzel" { nullable = true; };
|
|
|
|
settings = mkOption {
|
|
type = iniFormat.type;
|
|
default = { };
|
|
example = literalExpression ''
|
|
{
|
|
main = {
|
|
terminal = "''${pkgs.foot}/bin/foot";
|
|
layer = "overlay";
|
|
};
|
|
colors.background = "ffffffff";
|
|
}
|
|
'';
|
|
description = ''
|
|
Configuration for fuzzel written to
|
|
{file}`$XDG_CONFIG_HOME/fuzzel/fuzzel.ini`. See
|
|
{manpage}`fuzzel.ini(5)` for a list of available options.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "programs.fuzzel" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
|
|
|
xdg.configFile."fuzzel/fuzzel.ini" = mkIf (cfg.settings != { }) {
|
|
source = iniFormat.generate "fuzzel.ini" cfg.settings;
|
|
};
|
|
};
|
|
}
|