mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.ncspot;
|
||
|
|
||
|
tomlFormat = pkgs.formats.toml { };
|
||
|
|
||
|
in {
|
||
|
meta.maintainers = [ maintainers.marsam ];
|
||
|
|
||
|
options.programs.ncspot = {
|
||
|
enable = mkEnableOption "ncspot";
|
||
|
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.ncspot;
|
||
|
defaultText = literalExample "pkgs.ncspot";
|
||
|
description = "The package to use for ncspot.";
|
||
|
};
|
||
|
|
||
|
settings = mkOption {
|
||
|
type = tomlFormat.type;
|
||
|
default = { };
|
||
|
example = literalExample ''
|
||
|
{
|
||
|
shuffle = true;
|
||
|
gapless = true;
|
||
|
}
|
||
|
'';
|
||
|
description = ''
|
||
|
Configuration written to
|
||
|
<filename>~/.config/ncspot/config.toml</filename>.
|
||
|
</para><para>
|
||
|
See <link xlink:href="https://github.com/hrkfdn/ncspot#configuration" />
|
||
|
for the full list of options.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ cfg.package ];
|
||
|
|
||
|
xdg.configFile."ncspot/config.toml" = mkIf (cfg.settings != { }) {
|
||
|
source = tomlFormat.generate "ncspot-config" cfg.settings;
|
||
|
};
|
||
|
};
|
||
|
}
|