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/pubs.nix
Austin Horstman b24689a173 treewide: use mkPackageOption
Standardized interface to provide a consistent treewide experience.
2025-04-02 21:49:14 -05:00

53 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkOption types;
cfg = config.programs.pubs;
in {
meta.maintainers = [ lib.hm.maintainers.loicreynier ];
options.programs.pubs = {
enable = lib.mkEnableOption "pubs";
package = lib.mkPackageOption pkgs "pubs" { };
extraConfig = mkOption {
type = types.lines;
default = "";
example = lib.literalExpression ''
'''
[main]
pubsdir = ''${config.home.homeDirectory}/.pubs
docsdir = ''${config.home.homeDirectory}/.pubs/doc
doc_add = link
open_cmd = xdg-open
[plugins]
active = git,alias
[[alias]]
[[[la]]]
command = list -a
description = lists papers in lexicographic order
[[git]]
quiet = True
manual = False
force_color = False
''''';
description = ''
Configuration using syntax written to
{file}`$HOME/.pubsrc`.
'';
};
};
config = lib.mkIf cfg.enable {
home.packages = [ cfg.package ];
home.file.".pubsrc" =
lib.mkIf (cfg.extraConfig != "") { text = cfg.extraConfig; };
};
}