mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
fa73c3167e
sqls is a SQL language server written in Go. See: https://github.com/lighttiger2505/sqls
47 lines
1.1 KiB
Nix
47 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;
|
|
};
|
|
};
|
|
}
|