feat: format via 'ls **/*.nix | each { |it| nixfmt $it.name }'

This commit is contained in:
Ryan Yin
2025-07-30 12:17:24 +08:00
parent d10b30b06b
commit 13bb77108c
219 changed files with 2103 additions and 1728 deletions
+6 -4
View File
@@ -4,13 +4,15 @@
lib,
myvars,
...
}: let
}:
let
inherit (myvars) username;
user = "postgres"; # postgresql's default system user
package = pkgs.postgresql_16;
dataDir = "/data/apps/postgresql/${package.psqlSchema}";
in {
in
{
# Create Directories
# https://www.freedesktop.org/software/systemd/man/latest/tmpfiles.d.html#Type
systemd.tmpfiles.rules = [
@@ -58,8 +60,8 @@ in {
"--allow-group-access"
];
extraPlugins = ps:
with ps; [
extraPlugins =
ps: with ps; [
# postgis
# pg_repack
];