mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
`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.
49 lines
1.1 KiB
Nix
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;
|
|
};
|
|
};
|
|
}
|