1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/programs/sqls.nix

48 lines
1.0 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.sqls;
yamlFormat = pkgs.formats.yaml { };
in {
meta.maintainers = [ ];
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
{file}`$XDG_CONFIG_HOME/sqls/config.yml`. See
<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;
};
};
}