Files
home-manager/modules/programs/sqls.nix
Austin Horstman 355734d876 treewide: remove literalExpression where unneeded
`literalExpression` is intended just to signify code that needs to stay
a string that gets represented exactly as-is for docs. It has been
misused heavily and people get confused repeatedly on when or not to use
it because of the rampant misuse.
2026-05-17 21:43:25 -05:00

49 lines
1.1 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.sqls;
yamlFormat = pkgs.formats.yaml { };
in
{
meta.maintainers = [ ];
options.programs.sqls = {
enable = lib.mkEnableOption "sqls, a SQL language server written in Go";
package = lib.mkPackageOption pkgs "sqls" { nullable = true; };
settings = lib.mkOption {
inherit (yamlFormat) type;
default = { };
example = {
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 = lib.mkIf cfg.enable {
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."sqls/config.yml" = lib.mkIf (cfg.settings != { }) {
source = yamlFormat.generate "sqls-config" cfg.settings;
};
};
}