From 6ea2b7394489def788069705eb9f9775bf799b89 Mon Sep 17 00:00:00 2001 From: uku Date: Thu, 23 Jan 2025 10:02:10 +0100 Subject: [PATCH 1/2] fix(mottarone): add configuration includes --- systems/mottarone/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systems/mottarone/default.nix b/systems/mottarone/default.nix index b1ed3f3..f7c7a86 100644 --- a/systems/mottarone/default.nix +++ b/systems/mottarone/default.nix @@ -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 = { From cb0051bfdca100da9078437e69d8677d42f76a9b Mon Sep 17 00:00:00 2001 From: uku Date: Thu, 23 Jan 2025 10:02:22 +0100 Subject: [PATCH 2/2] feat(mottarone): add pgadmin again --- systems/mottarone/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/systems/mottarone/default.nix b/systems/mottarone/default.nix index f7c7a86..08b5326 100644 --- a/systems/mottarone/default.nix +++ b/systems/mottarone/default.nix @@ -30,5 +30,10 @@ in }; postgresql.enable = true; + pgadmin = { + enable = true; + initialEmail = "hi@uku.moe"; + initialPasswordFile = "/opt/pgadminpwd"; + }; }; }