mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 04:04:06 +01:00
43 lines
894 B
Nix
43 lines
894 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.nvrs;
|
|
settingsFormat = pkgs.formats.toml { };
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ koi ];
|
|
|
|
options.programs.nvrs = {
|
|
enable = lib.mkEnableOption "nvrs";
|
|
|
|
package = lib.mkPackageOption pkgs "nvrs" { };
|
|
|
|
settings = lib.mkOption {
|
|
type = lib.types.submodule {
|
|
freeformType = settingsFormat.type;
|
|
};
|
|
|
|
default = { };
|
|
description = ''
|
|
Configuration written to {file}`$XDG_CONFIG_HOME/nvrs/config.toml`
|
|
|
|
See <https://nvrs.adamperkowski.dev/configuration.html> for details.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
environment.etc = {
|
|
"nvrs/nvrs.toml" = lib.mkIf (cfg.settings != { }) {
|
|
source = settingsFormat.generate "nvrs-config.toml" cfg.settings;
|
|
};
|
|
};
|
|
};
|
|
}
|