hyfetch: add module
This commit is contained in:
parent
7146638e9e
commit
d1c677ac25
8 changed files with 92 additions and 0 deletions
43
modules/programs/hyfetch.nix
Normal file
43
modules/programs/hyfetch.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.programs.hyfetch;
|
||||
|
||||
jsonFormat = pkgs.formats.json { };
|
||||
in {
|
||||
meta.maintainers = [ maintainers.lilyinstarlight ];
|
||||
|
||||
options.programs.hyfetch = {
|
||||
enable = mkEnableOption "hyfetch";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.hyfetch;
|
||||
defaultText = literalExpression "pkgs.hyfetch";
|
||||
description = "The hyfetch package to use.";
|
||||
};
|
||||
|
||||
settings = mkOption {
|
||||
type = jsonFormat.type;
|
||||
default = { };
|
||||
example = literalExpression ''
|
||||
{
|
||||
preset = "rainbow";
|
||||
mode = "rgb";
|
||||
color_align = {
|
||||
mode = "horizontal";
|
||||
};
|
||||
}
|
||||
'';
|
||||
description = "JSON config for HyFetch";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
xdg.configFile."hyfetch.json".source =
|
||||
jsonFormat.generate "hyfetch.json" cfg.settings;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue