1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 13:03:33 +02:00
home-manager/modules/programs/sqls.nix
Mario Rodas fa73c3167e
sqls: add module
sqls is a SQL language server written in Go.
See: https://github.com/lighttiger2505/sqls
2021-12-11 00:21:49 +01:00

48 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.sqls;
yamlFormat = pkgs.formats.yaml { };
in {
meta.maintainers = [ maintainers.marsam ];
options.programs.sqls = {
enable = mkEnableOption "sqls, a SQL language server written in Go";
settings = mkOption {
type = yamlFormat.type;
default = { };
example = literalExpression ''
{
lowercaseKeywords = true;
connections = [
{
driver = "mysql";
dataSourceName = "root:root@tcp(127.0.0.1:13306)/world";
}
];
}
'';
description = ''
Configuration written to
<filename>$XDG_CONFIG_HOME/sqls/config.yml</filename>. See
<link xlink:href="https://github.com/lighttiger2505/sqls#db-configuration"/>
for supported values.
'';
};
};
config = mkIf cfg.enable {
home.packages = [ pkgs.sqls ];
xdg.configFile."sqls/config.yml" = mkIf (cfg.settings != { }) {
source = yamlFormat.generate "sqls-config" cfg.settings;
};
};
}