1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-19 06:43:01 +00:00
home-manager/modules/programs/fuzzel.nix
Austin Horstman d2c014e1c7
treewide: null package support (#6582)
Can generate the config without installing application through home-manager. Helpful when a package is broken (or not provided) on a specific platform through nixpkgs and needs to be installed through other means but you still can benefit from the declarative configuration.
2025-03-07 18:17:52 -06:00

51 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;
};
};
}