Compare commits

...

2 commits

Author SHA1 Message Date
uku
cb0051bfdc
feat(mottarone): add pgadmin again 2025-01-23 10:12:32 +01:00
uku
6ea2b73944
fix(mottarone): add configuration includes 2025-01-23 10:12:22 +01:00

View file

@ -19,8 +19,8 @@ in
i18n.defaultLocale = lib.mkForce "fr_FR.UTF-8";
hm.programs = {
git.enable = lib.mkForce false;
ssh.enable = lib.mkForce false;
git.includes = [ { path = "~/.config/git/work_config"; } ];
ssh.includes = [ "work_config" ];
};
services = {
@ -30,5 +30,10 @@ in
};
postgresql.enable = true;
pgadmin = {
enable = true;
initialEmail = "hi@uku.moe";
initialPasswordFile = "/opt/pgadminpwd";
};
};
}