ncspot: add module (#1939)

* ncspot: add module

ncspot is a ncurses Spotify client written in Rust using librespot.

* news: fix bad github ui merge

Co-authored-by: Nicolas Berbiche <nicolas@normie.dev>
This commit is contained in:
Mario Rodas 2021-05-01 16:38:12 -05:00 committed by GitHub
parent 5709b5f953
commit 2f857761d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ 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;
};
};
}