diff --git a/.gitlab-ci/build.yml b/.gitlab-ci/build.yml index 050e827b..6e6bf8e4 100644 --- a/.gitlab-ci/build.yml +++ b/.gitlab-ci/build.yml @@ -11,6 +11,7 @@ build-nixos-configurations: - HOST_TO_BUILD: - kholinar - lasting-integrity + - marabethia - urithiru script: - nix-env --quiet -j8 -iA cachix -f https://cachix.org/api/v1/install diff --git a/.gitlab-ci/update.yml b/.gitlab-ci/update.yml index 5e460fb1..d89a2394 100644 --- a/.gitlab-ci/update.yml +++ b/.gitlab-ci/update.yml @@ -21,6 +21,7 @@ build-nixos-configurations: - HOST_TO_BUILD: - kholinar - lasting-integrity + - marabethia - urithiru needs: - job: update-flake-lock diff --git a/flake.nix b/flake.nix index 734ca135..364de0ee 100644 --- a/flake.nix +++ b/flake.nix @@ -199,6 +199,7 @@ nixosConfigurations = { kholinar = nixosSystem "x86_64-linux" "kholinar"; lasting-integrity = nixosSystem "x86_64-linux" "lasting-integrity"; + marabethia = nixosSystem "x86_64-linux" "marabethia"; urithiru = nixosSystem "x86_64-linux" "urithiru"; }; darwinConfigurations.thaylen-city = darwinSystem "aarch64-darwin" "thaylen-city"; diff --git a/machines/marabethia/default.nix b/machines/marabethia/default.nix new file mode 100644 index 00000000..680080bd --- /dev/null +++ b/machines/marabethia/default.nix @@ -0,0 +1,36 @@ +{ pkgs, ... }: + +{ + imports = [ ./hardware.nix ]; + + time.timeZone = "Europe/Brussels"; + + networking.hostId = "10a4250f"; + + chvp = { + stateVersion = "24.11"; + base = { + network = { + ovh = { + enable = true; + publicInterface = "eno1"; + publicIPV4 = { + ip = "162.19.60.238"; + gateway = "162.19.60.254"; + }; + publicIPV6 = { + ip = "2001:41d0:203:cdee::"; + gateway = "2001:41d0:0203:cdff:00ff:00ff:00ff:00ff"; + }; + internalInterface = "eno2"; + internalIPV4 = "192.168.0.3"; + }; + }; + nix.enableDirenv = true; + zfs = { + enable = true; + rootDataset = "zroot/local/root"; + }; + }; + }; +} diff --git a/machines/marabethia/hardware.nix b/machines/marabethia/hardware.nix new file mode 100644 index 00000000..c835a087 --- /dev/null +++ b/machines/marabethia/hardware.nix @@ -0,0 +1,73 @@ +{ lib, modulesPath, ... }: + +{ + imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; + + boot = { + loader = { + grub = { + enable = true; + efiSupport = true; + mirroredBoots = [ + { devices = [ "nodev" ]; path = "/boot/ESP0"; } + { devices = [ "nodev" ]; path = "/boot/ESP1"; } + ]; + }; + efi.canTouchEfiVariables = true; + }; + initrd = { + availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ]; + }; + kernelModules = [ "kvm-intel" ]; + }; + + fileSystems = { + "/" = { + device = "zroot/local/root"; + fsType = "zfs"; + neededForBoot = true; + }; + "/nix" = { + device = "zroot/local/nix"; + fsType = "zfs"; + neededForBoot = true; + }; + "/nix/store" = { + device = "zroot/local/nix-store"; + fsType = "zfs"; + neededForBoot = true; + }; + "/data" = { + device = "zroot/safe/data"; + fsType = "zfs"; + neededForBoot = true; + }; + "/cache" = { + device = "zroot/local/cache"; + fsType = "zfs"; + neededForBoot = true; + }; + "/boot/ESP0" = { + device = "/dev/disk/by-uuid/1779-70F4"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + "/boot/ESP1" = { + device = "/dev/disk/by-uuid/179D-4050"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + }; + + swapDevices = [ + { device = "/dev/disk/by-uuid/4662d37a-236f-451c-a2ec-521a19aa0e55"; } + { device = "/dev/disk/by-uuid/31260b02-0867-4721-bc06-24b415c57f36"; } + ]; + + powerManagement.cpuFreqGovernor = lib.mkDefault "performance"; + hardware = { + cpu.intel.updateMicrocode = true; + enableRedistributableFirmware = true; + }; + services.fstrim.enable = true; +} diff --git a/modules/nixos/base/network/ovh.nix b/modules/nixos/base/network/ovh.nix index 5ee4802c..505e4c70 100644 --- a/modules/nixos/base/network/ovh.nix +++ b/modules/nixos/base/network/ovh.nix @@ -6,6 +6,10 @@ default = false; example = true; }; + publicInterface = lib.mkOption { + default = "eno3"; + example = "eno1"; + }; publicIPV4 = lib.mkOption { example = { ip = "1.2.3.4"; @@ -18,6 +22,10 @@ gateway = "1:2:3:ff:ff:ff:ff:ff"; }; }; + internalInterface = lib.mkOption { + default = "eno4"; + example = "eno2"; + }; internalIPV4 = lib.mkOption { example = "192.168.0.1"; }; @@ -28,9 +36,9 @@ systemd.network = { enable = true; networks = with config.chvp.base.network.ovh; { - eno3 = { + "${publicInterface}" = { enable = true; - matchConfig = { Name = "eno3"; }; + matchConfig = { Name = "${publicInterface}"; }; address = [ "${publicIPV4.ip}/24" "${publicIPV6.ip}/64" @@ -49,9 +57,9 @@ "2606:4700:4700::1001" ]; }; - eno4 = { + "${internalInterface}" = { enable = true; - matchConfig = { Name = "eno4"; }; + matchConfig = { Name = "${internalInterface}"; }; address = [ "${internalIPV4}/16" ]; routes = [ { Destination = "${internalIPV4}/16"; } diff --git a/modules/shared/base/wireguard/default.nix b/modules/shared/base/wireguard/default.nix index 418cd5d0..709564ca 100644 --- a/modules/shared/base/wireguard/default.nix +++ b/modules/shared/base/wireguard/default.nix @@ -16,6 +16,11 @@ let privkeyFile = config.age.secrets."files/wireguard/lasting-integrity.privkey".path; ip = "10.240.0.1"; }; + marabethia = { + pubkey = "h451oXBTzim1POLmnJC1OtFzbIXyxg6d5qpFFdHLbRs="; + privkeyFile = config.age.secrets."files/wireguard/marabethia.privkey".path; + ip = "10.240.0.6"; + }; thaylen-city = { pubkey = "O0q2/W7dRM4LvAL9MSDZqAbGSzqi8AHLVl1sJsRDsUY="; privkeyFile = config.age.secrets."files/wireguard/thaylen-city.privkey".path; diff --git a/secrets.nix b/secrets.nix index c37dd0e7..e1155949 100644 --- a/secrets.nix +++ b/secrets.nix @@ -1,16 +1,19 @@ let kholinar = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOL8MzChayhcVTfZvE3/ExwXpq2+LbihjzUVlKeIGoOL"; lasting-integrity = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMKJmeY7j5LxWVv3fKzqG4Bvg/ZhOp8iwk0utpyMWMSk"; + marabethia = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAUP1r937+PLiqdyUuqbYoyAs04/2AxuXS13grU+fvpA"; thaylen-city = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC/sIkgf7aYX/JcWWp/dCHgq7sJ5WDYYyWSn3DvkW4gB"; urithiru = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOrzOpyzDc5BVtAeb5//PnMRcp+9B+DjfU7p2YpaH6a2"; nixosHosts = [ kholinar lasting-integrity + marabethia urithiru ]; hosts = [ kholinar lasting-integrity + marabethia thaylen-city urithiru ]; @@ -23,6 +26,7 @@ let ]; servers = [ lasting-integrity + marabethia urithiru ]; charlotte = [ @@ -56,7 +60,7 @@ in "secrets/passwords/services/mail/peter_at_vanpetegem.me.age".publicKeys = [ lasting-integrity ] ++ users; "secrets/passwords/services/mail/postbot_at_vanpetegem.be.age".publicKeys = [ lasting-integrity ] ++ users; "secrets/passwords/services/mail/robbe_at_robbevanpetegem.be.age".publicKeys = [ lasting-integrity ] ++ users; - "secrets/passwords/services/mail/robbe_at_vanpetegem.me.age".publicKeys = [ lasting-integrity ] ++ users; + "secrets/passwords/services/mail/robbe_at_vanpetegem.be.age".publicKeys = [ lasting-integrity ] ++ users; "secrets/passwords/services/mail/webmaster_at_vanpetegem.be.age".publicKeys = [ lasting-integrity ] ++ users; "secrets/passwords/services/ssmtp-pass.age".publicKeys = nixosHosts ++ users; @@ -99,6 +103,7 @@ in "secrets/files/wireguard/kholinar.privkey.age".publicKeys = [ kholinar ] ++ users; "secrets/files/wireguard/lasting-integrity.privkey.age".publicKeys = [ lasting-integrity ] ++ users; + "secrets/files/wireguard/marabethia.privkey.age".publicKeys = [ marabethia ] ++ users; "secrets/files/wireguard/thaylen-city.privkey.age".publicKeys = [ thaylen-city ] ++ users; "secrets/files/wireguard/urithiru.privkey.age".publicKeys = [ urithiru ] ++ users; "secrets/files/wireguard/psk.age".publicKeys = hosts ++ users; diff --git a/secrets/authorized_keys/charlotte.age b/secrets/authorized_keys/charlotte.age index a87520b3..a8f9852f 100644 Binary files a/secrets/authorized_keys/charlotte.age and b/secrets/authorized_keys/charlotte.age differ diff --git a/secrets/authorized_keys/root.age b/secrets/authorized_keys/root.age index 1be0ca7d..e861ef93 100644 Binary files a/secrets/authorized_keys/root.age and b/secrets/authorized_keys/root.age differ diff --git a/secrets/data-access/authorized_keys.age b/secrets/data-access/authorized_keys.age index 66b07a1d..3e298485 100644 Binary files a/secrets/data-access/authorized_keys.age and b/secrets/data-access/authorized_keys.age differ diff --git a/secrets/data-access/create_torrent.age b/secrets/data-access/create_torrent.age index 1d466cc1..de764fdc 100644 Binary files a/secrets/data-access/create_torrent.age and b/secrets/data-access/create_torrent.age differ diff --git a/secrets/data-access/password_file.age b/secrets/data-access/password_file.age index 2bb8e85e..03a8bf10 100644 Binary files a/secrets/data-access/password_file.age and b/secrets/data-access/password_file.age differ diff --git a/secrets/data-access/readonly_authorized_keys.age b/secrets/data-access/readonly_authorized_keys.age index ad0f7556..82c120b3 100644 Binary files a/secrets/data-access/readonly_authorized_keys.age and b/secrets/data-access/readonly_authorized_keys.age differ diff --git a/secrets/data-access/readonly_password_file.age b/secrets/data-access/readonly_password_file.age index a01f5ad4..f889db2e 100644 Binary files a/secrets/data-access/readonly_password_file.age and b/secrets/data-access/readonly_password_file.age differ diff --git a/secrets/data-access/ssh_host_ed25519_key.age b/secrets/data-access/ssh_host_ed25519_key.age index b24b97ce..e991ebf4 100644 Binary files a/secrets/data-access/ssh_host_ed25519_key.age and b/secrets/data-access/ssh_host_ed25519_key.age differ diff --git a/secrets/data-access/ssh_host_ed25519_key.pub.age b/secrets/data-access/ssh_host_ed25519_key.pub.age index b16ef39b..71f248d5 100644 Binary files a/secrets/data-access/ssh_host_ed25519_key.pub.age and b/secrets/data-access/ssh_host_ed25519_key.pub.age differ diff --git a/secrets/data-access/ssh_host_rsa_key.age b/secrets/data-access/ssh_host_rsa_key.age index deeefbc4..27d3c214 100644 Binary files a/secrets/data-access/ssh_host_rsa_key.age and b/secrets/data-access/ssh_host_rsa_key.age differ diff --git a/secrets/data-access/ssh_host_rsa_key.pub.age b/secrets/data-access/ssh_host_rsa_key.pub.age index 08f76707..fa151904 100644 Binary files a/secrets/data-access/ssh_host_rsa_key.pub.age and b/secrets/data-access/ssh_host_rsa_key.pub.age differ diff --git a/secrets/files/programs/ssh/host_configuration.age b/secrets/files/programs/ssh/host_configuration.age index de2d56aa..7ab57c87 100644 Binary files a/secrets/files/programs/ssh/host_configuration.age and b/secrets/files/programs/ssh/host_configuration.age differ diff --git a/secrets/files/programs/transmission/config.json.age b/secrets/files/programs/transmission/config.json.age index fd876dbe..503b8214 100644 --- a/secrets/files/programs/transmission/config.json.age +++ b/secrets/files/programs/transmission/config.json.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 9PfEBQ OBwYeJEj4MkqWhkxg6xEJ2x51cYqjurR8qTkrJCXYgQ -u4zcz8jufXXye0C86uY9UxWKxdL/HXuC2Z8K+scypF0 --> ssh-ed25519 s9rb8g Af8H6FbOReL9Y4XtqQLhl1+8EkklhIO8hnBcB1SvHFY -HFNX/PNtFlLwhQnyKq9zOBRxdK1vTWUEXL6BWwcZD/E --> ssh-ed25519 +xxExQ RAac+ND/ZAii4oQa00k71pzPDvJpSpn3O+xiGBCJzzI -GmxhE1S6wTidQ0PJGnHYu3nXPkFtY19aJ8StEAt7P+0 ---- fVEspNtjZihDfhoEnBlOphzn13LlZt/A9xHYMtdCaDU -+5 3/P@jD.m b&'G_x'Z> G4̉apQ;C \ No newline at end of file +-> ssh-ed25519 9PfEBQ j6KKtey/zSyTPbyJkWGp+vxKL1Yz0rkQcbL+25YHel0 +mMdU9EDJH3Xq5dvsx+fy4DzaS+JQjV8yj/PuJ2d1aeA +-> ssh-ed25519 s9rb8g zX91WwCmwA+9rSbZldOJgfrryQRLYMnuP7gjgKaaXQQ +Nw1PXcVmkr/0V/pMNwWQHQkXOVUxkmS5SUp+9SJQ/q4 +-> ssh-ed25519 +xxExQ ukaKpDISJc3sA4TY2wUPGIqVX7apleDw6cclGosDQhs +iBpIGkTpl6l+Aiac7ozbuCZEed5z6sWSXU5GEIeD1gI +--- cPmstjm9fghNTuQuXVhs9WAJcCL4sISbUZ6PPAfCgDE +pOqчDlx^%∪ ssh-ed25519 aUd9Ng lHYH9iWVPaRNjZH8rCiD1gsbP7nxMzfuSO6Toox/JCI -BlqvdJ9eg36H3vegOo4BZEdXRYtXvAKi66Bk8Gm360g --> ssh-ed25519 KOkamg uMsGZ1Qin1iE8Edv8GL3EHYLCnIh8My1THK7SP19K1U -Uu5Pw/Fmti77/lzKawzQO8McGK5tqXExV+6v9C0ZIGE --> ssh-ed25519 s9rb8g zsGDPWCWBsUdLFnFyuF1f0bmOKcAiTW7GoOVKLcQP0w -7YISJdTbTIz/V8y4LQ7kfXd4wTp7WHjDMMv8Rn3+AQg --> ssh-ed25519 +xxExQ o9LrOHgQ5AhQVkdhUJCrhOFcwVHHHNJQHygi2zTuvRs -JtlJn7ZWBcF8zC8SA/GBWOQDp9232jD7TdfEdFI05Kg ---- kfYqkgrP70TsukK7iAS5WlM9WjWCZ+spD4cnyJja7Mw -}D".#J虻YFI9>aΏ{XZ xknE:+CX#tMbdcI6zSFˎdźC˝xӣPy\i2e!U -j(JoYub9X\h \ No newline at end of file +-> ssh-ed25519 aUd9Ng jhIKl4aQ9s//7ZY5diVygoGqN+EKSFWXYNcH4CsBqk0 +Mj924K6PEUC3ugedNds++UgF2i5QlmLksvlb5xqWkes +-> ssh-ed25519 KOkamg x2LgVga8GMo8yLRz3ruquwX3Av6K4BumRQU4vbJ16w8 ++CT0ktPtcdfRXdpR3IHbWq+dIgveHDVEqXD1Mtmmigo +-> ssh-ed25519 s9rb8g wEu4ZSTAXPYShVtP1+/dc4/pe5AS/ga6LHI4JUk8Mj0 +DgdVuEXjD6XMz3ds2+RIcG5VHCnNayszsf/0m74dtXw +-> ssh-ed25519 +xxExQ i6SejDuBOWFb/3FUZq699BqzaY1o3Glb5DvAZ4/5YU0 +C6lUlKZ4osxMfzU7/PMv9BMDNxguPPTeLFTpU5Qxpao +--- l/df8W5KVWuHojWKgi7WrIUn2J7S3X27rCiV4WR3B20 +%\N񥬩$TO05"OKV\s3yix:G2ocB鯰I3ȁQQF@>N ϲg,H!kcAF LyB0w?5 \ No newline at end of file diff --git a/secrets/files/programs/vpn/local.age b/secrets/files/programs/vpn/local.age index 8a1ab9f8..0d3cffe0 100644 Binary files a/secrets/files/programs/vpn/local.age and b/secrets/files/programs/vpn/local.age differ diff --git a/secrets/files/services/matrix-appservice-slack/config.yml.age b/secrets/files/services/matrix-appservice-slack/config.yml.age index b3a999c8..d7477abf 100644 Binary files a/secrets/files/services/matrix-appservice-slack/config.yml.age and b/secrets/files/services/matrix-appservice-slack/config.yml.age differ diff --git a/secrets/files/services/matrix-appservice-slack/registration.yml.age b/secrets/files/services/matrix-appservice-slack/registration.yml.age index b56a97d9..5e0c29f8 100644 Binary files a/secrets/files/services/matrix-appservice-slack/registration.yml.age and b/secrets/files/services/matrix-appservice-slack/registration.yml.age differ diff --git a/secrets/files/services/matrix-hookshot/config.yml.age b/secrets/files/services/matrix-hookshot/config.yml.age index 02a2045a..cc8f87b2 100644 Binary files a/secrets/files/services/matrix-hookshot/config.yml.age and b/secrets/files/services/matrix-hookshot/config.yml.age differ diff --git a/secrets/files/services/matrix-hookshot/passkey.pem.age b/secrets/files/services/matrix-hookshot/passkey.pem.age index 938fcab1..a1698e12 100644 Binary files a/secrets/files/services/matrix-hookshot/passkey.pem.age and b/secrets/files/services/matrix-hookshot/passkey.pem.age differ diff --git a/secrets/files/services/matrix-hookshot/registration.yml.age b/secrets/files/services/matrix-hookshot/registration.yml.age index 0b39c368..073c6284 100644 Binary files a/secrets/files/services/matrix-hookshot/registration.yml.age and b/secrets/files/services/matrix-hookshot/registration.yml.age differ diff --git a/secrets/files/services/matrix-synapse/config.yml.age b/secrets/files/services/matrix-synapse/config.yml.age index 4acdc385..1ad403bc 100644 Binary files a/secrets/files/services/matrix-synapse/config.yml.age and b/secrets/files/services/matrix-synapse/config.yml.age differ diff --git a/secrets/files/services/mautrix-whatsapp/config.yml.age b/secrets/files/services/mautrix-whatsapp/config.yml.age index 6ad86362..d149032c 100644 Binary files a/secrets/files/services/mautrix-whatsapp/config.yml.age and b/secrets/files/services/mautrix-whatsapp/config.yml.age differ diff --git a/secrets/files/services/mautrix-whatsapp/registration.yml.age b/secrets/files/services/mautrix-whatsapp/registration.yml.age index b7066a36..b2c72946 100644 Binary files a/secrets/files/services/mautrix-whatsapp/registration.yml.age and b/secrets/files/services/mautrix-whatsapp/registration.yml.age differ diff --git a/secrets/files/services/phone-push-url.age b/secrets/files/services/phone-push-url.age index b5996d38..c002e0f4 100644 Binary files a/secrets/files/services/phone-push-url.age and b/secrets/files/services/phone-push-url.age differ diff --git a/secrets/files/wireguard/kholinar.privkey.age b/secrets/files/wireguard/kholinar.privkey.age index f3caef7f..2dc1f987 100644 --- a/secrets/files/wireguard/kholinar.privkey.age +++ b/secrets/files/wireguard/kholinar.privkey.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 aUd9Ng LHDnywGx0rFHkJTBRdRHp+vpRTVE38Fg1m+jCfRJrAs -0f6IdHUMPKdOiCmT9FTM+ysgfo60Jl0ySTkiSj3JyIU --> ssh-ed25519 s9rb8g eKlDtV0dVeDUCMmSYO2IfH79GvHQoLjGLYtafQaQzm0 -S6PefwvpjnjYXQAQZG4GNgqjkJjLWs0tNmbkB2pYmTE --> ssh-ed25519 +xxExQ F0o5hTKecnlGG7QCvx0pE14sqssxlLN3jUS2Ae0O9Gw -1kJHqhq65ucSSyBEIe71IADJILEbKjZm9YWz+H3Lhpg ---- YFPD0uC8oGjCNn1NPGFWRMUZxDJyvZzI8YWE9lLFW4I -Q˻A1<ʈksk'Rm+LGjFN-i -9p[EcBe{Ȍ}>pE \ No newline at end of file +-> ssh-ed25519 aUd9Ng /jU3qeHs7+bdFwmZeUljFNWCCr9RkrahB4a+PAsKUic +Yc8tMGxQZXkZtY+x3ynDKc/OA/11C0iWsSmlvRKHuD4 +-> ssh-ed25519 s9rb8g y0zrIJeGsKyqpGbPB/b9kOX9yxFeU6DEKrx0Y7vxMwE +ZSG2YJ9d7HTmaPF4KSOaE/pQW797NMswRy5a+2KfLuE +-> ssh-ed25519 +xxExQ B750BazNpPD+8r1fnHdFez2W96chYfiqIJf6Jsmi82c +Mm1ZmMx/JQzvsQrWol4rYocd9IujnEbgSexq0Oafus8 +--- L30tWzIV4y/HM83kCzEKcy+uEPkStvWHYcrwn+rfweE +5ZnEDB&NSR`PX>"'qL븴 }V&[(~y] \ No newline at end of file diff --git a/secrets/files/wireguard/lasting-integrity.privkey.age b/secrets/files/wireguard/lasting-integrity.privkey.age index 32da0a30..04f07611 100644 --- a/secrets/files/wireguard/lasting-integrity.privkey.age +++ b/secrets/files/wireguard/lasting-integrity.privkey.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ 9nbJtYGBFo/tZQjYX2tytxwy1jkd+775m1Op9I1OWSY -hPesuTb/HA+Jv48jO7BHkGb3X5f7P5Bmxtsz5n23NHk --> ssh-ed25519 s9rb8g JEQXx0/hjsd28jCO3OC8eK5FNjKQsvcNqPWEuJ9lGGY -8XgscDt7uWS15teyogZMszc88ftFaj7Svy787NvP2+0 --> ssh-ed25519 +xxExQ zofMdAEYBmbDXZ3wYEAQJQBIvmPCiYMTf6qli6MXmj8 -2C3du1bqydUTJj3+blZLn5pfXEcbnFNeL6fx7sapnAc ---- vuaMyvxmy7QQupYaWU2yaneoiRvwMdAwnmmc86EHrss - \pW2"y|lHTU>cYo]艭"oeýdo:&.xi~ \ No newline at end of file +-> ssh-ed25519 hKAFvQ fegpYVhdV00OvvkNvrvy+qY9cpqp1bRuhqYr4D1ROwc +5n7slBRyKhMFU1TQhKuMR+5Z2V7AkP5jXvPjR5Ic0wc +-> ssh-ed25519 s9rb8g LeHOmnhGcFeKm4EoozJ+kX00PhA6QrZezG1ezilxUyE +sONdoMpz475CMkju8pMWldlWSWEU+a2t654VzMBT8YA +-> ssh-ed25519 +xxExQ sIV+2g9xdu50sGu2NxTMk6FCR+HQCbVIQE5oMNJbUVs +KZze9+0CMSN7hqKak+AIbsZotq0+Ij1QCwot/CEXTdw +--- QytlTLX0Umn64QhwAt5oZIxCfL0Nmm90Hzsk5UK6Wno +T &+w_ܳEf?LSN4  $I$Ѵ_9$X!"O: \ No newline at end of file diff --git a/secrets/files/wireguard/marabethia.privkey.age b/secrets/files/wireguard/marabethia.privkey.age new file mode 100644 index 00000000..0a286eb9 --- /dev/null +++ b/secrets/files/wireguard/marabethia.privkey.age @@ -0,0 +1,9 @@ +age-encryption.org/v1 +-> ssh-ed25519 9+Fe5A uDOwnJgpqbsWs8pJS3Btz85uZc/kbfvrrwgATJAZwTU +0AlRfosOWavLgiyBISXvjYgEhn3pK7zU24DatCB74yg +-> ssh-ed25519 s9rb8g 1LIjbpghuvBwZp2vPFaRiUjobJbHbSVbcIpuoWL24Vg +1L+NnD/iW3/TdiFzSxqvWwdFz0WUAILerc/jCjutdUI +-> ssh-ed25519 +xxExQ jKO1Va7YAfYi8z65bge0btUz6GJioFZZlqkskoFHmXo +u2aO6yAgFaFbpIIZBACS2fgNVaL2Lq1lcNUVc5yAhOk +--- z+LYnKF6lKIbuq1Gx6AOqRMy3KDLUZdP3HKNDNYyL2A +{?.?En)}]{DH?v{*OA& 𵷒_0 ] )purQ \ No newline at end of file diff --git a/secrets/files/wireguard/psk.age b/secrets/files/wireguard/psk.age index 48164dbb..48c6159b 100644 --- a/secrets/files/wireguard/psk.age +++ b/secrets/files/wireguard/psk.age @@ -1,15 +1,17 @@ age-encryption.org/v1 --> ssh-ed25519 aUd9Ng 83H9lUAR2pOwx3DQgo4pHKD2xRnmtoTHoiavedjYq3Q -Xzs/51VvjvtRYgmqAt4xCH7kY1jLKqesy0ravaIfpBo --> ssh-ed25519 hKAFvQ qW6IuLwpQFJGcq+9ybfILEQClUhqj45tGfX5f4qPWS0 -a7aC78K608WMetBstXq3dyvVYDQAvsHRLNoqpQrA6E8 --> ssh-ed25519 KOkamg eEeg6H1H/gVk2IVXj02e2ic4Tzj67SOJFtmY8zXbCxU -Tqr4m9Nvyvcba1e+E7kXCmWE5bg8jZpJxu6YJ36enn4 --> ssh-ed25519 9PfEBQ YjN9I7lrziU40JZx+zo3czQAOXoacNhdFNhGDd4u8Do -bWUPvlHF4plpeIVd+1fjjxaTxQOa8uc+QYfiD2X62O8 --> ssh-ed25519 s9rb8g sKF+XsmeWQINI4Ais+uPcuMrUu8diB0Nbzz0ls7SgAg -oW17zoimeyDxDhbro1kxPwCgJ4hoNtWqWvrMMbs2clA --> ssh-ed25519 +xxExQ vQC2ADmhnGk31gWWVpRaTuulz3XRDwyw9Ios+v+R02Y -HJYUtDgZz6b8lEzuUy5MR/RwCesY22PgaWLhTeqKWos ---- F3Wdle52nSEBtwmIAKVH8rH8vm0yVuGo6ADeEpv4i0o -O\K2`:R`@hcZȜνc0) 'ȩd)Y*HpD, \ No newline at end of file +-> ssh-ed25519 aUd9Ng vC5KehAAbdqYllf2/0QSf4uRCa6ljEuuT4qtdtWeP0M +HMLCh7DE+Vsi1RdSaOzV4EM4yemJ18YRd9f1VLd95zQ +-> ssh-ed25519 hKAFvQ Q6hBAzgpP/e3kaMWunC5gCdApX4W4ybihqlSPeWAkjk +S4rHWq4os5CU1BuQMqS/wRygt9TJMFofX9RSxDjR3GE +-> ssh-ed25519 9+Fe5A +RljdhO8k51puMhdVZo+X5AOjSWCqA+GetRrBgxVCg8 +KeMKrkTZkaKZe8yTyi4BldR1q8fQEXbKahMeqxAn/kY +-> ssh-ed25519 KOkamg lkqlUyFcxzfY6hg23g+9sQDHII52m2yUahxM/9ZKpEg +ZVd7znMnVcF68RiKtgdH1ufyovT++x8bBvnzYzmGcCA +-> ssh-ed25519 9PfEBQ HBLeTU6taJxScKGFSKfYbtvknX4Gvyiz//Rw3LSsAEE +USkruvHK+0AJkCktmrk4HlkoaXY4gM7rorHP/pHtKYw +-> ssh-ed25519 s9rb8g sj0w3p2mPmZQdCG9qVf89LaQv5hkbu9s7LnHV7C8uxs +iLxP5cy4kwlbwFE6oggnewUEI+4imZp3lzF9ymARReg +-> ssh-ed25519 +xxExQ XRQrPMhjSdI3PgifBmV0aHSqev4T0a5pVBxuxQmdhlE +PkyVCxcbv3+i2LBa/gATMHREu6VjUJ0Btykxr7Gz43I +--- 9T0oIM+lLxbQMEl9LUKxEJQM+sIfJMBG9sHOpOiNFV4 +D{F(/A Y761V;E.{;,;5?'zK gB.[,?3ٗʣjZu6ڍ", \ No newline at end of file diff --git a/secrets/files/wireguard/thaylen-city.privkey.age b/secrets/files/wireguard/thaylen-city.privkey.age index f97f6170..109cdd64 100644 --- a/secrets/files/wireguard/thaylen-city.privkey.age +++ b/secrets/files/wireguard/thaylen-city.privkey.age @@ -1,10 +1,10 @@ age-encryption.org/v1 --> ssh-ed25519 KOkamg Ave15/4+uu5FWfIK1qLwImESyCDLzilWQeuNiim7MHc -yU/8z7o6CAQdeoXwOPL6tdJ17kV9Q/jWRZldPk4m9so --> ssh-ed25519 s9rb8g r/CcbdZE6VCXnb2VbVFJCbcn/ANYIja0ulmr81tydhQ -KiKlxc6G1ry4/ryYZ6hoKNJPvLGaN+Q4L2oPqp+3Zbs --> ssh-ed25519 +xxExQ TlRgGa91hF8kxkdVKyMQSe0A+8LRYRA270vVUnz4ySs -9uRwCJxDtnOssBji90+WHg6S+0vohS889YxX47J6sPI ---- Wgz5JZUMJpoXP/lEXZKIfGVyMdvgMcNeVpzOZ/FmDT0 -G1N;^ۊԌ,wNM .)Tu}J`_WѬ -'.que`rE+Vĕ \ No newline at end of file +-> ssh-ed25519 KOkamg MWBjyl5uis0C3fX9kPnm2mZJGg/Chj1j+mwP8yWOpSE +6KcfApBcHNQLBlFkA/Cnb5en5/sBqeQ9nHc6RjBhuyo +-> ssh-ed25519 s9rb8g O2PB/OOVjN3Z+0fE6LTO0An8L2wvvMMoB17oY3AVYEs +1a/kjH38OLZC+wqi74ie4ZdAiJF8eyajlVjp/l52SnA +-> ssh-ed25519 +xxExQ aKXCHaeOhvwJob2cL98p8/bXRhXwa1KBSJjfPpHpol8 +KjjiFV6TnRN1nk9ErUYTJAdm34uJ53HT7o7FSFO8LVU +--- OKlSmCcmVeOt/bziJ0LrvvzBVNlwJ8tFFqc/ocBDnj8 +cWVD u%=7ο;_d?zso*sff";VT +:8:w%0gVkjj \ No newline at end of file diff --git a/secrets/files/wireguard/urithiru.privkey.age b/secrets/files/wireguard/urithiru.privkey.age index 2de28dd9..19ffe1d2 100644 --- a/secrets/files/wireguard/urithiru.privkey.age +++ b/secrets/files/wireguard/urithiru.privkey.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 9PfEBQ tbBzj9eqdr7pIQfGBUQ5d1uqpi4QlUk1dvgbxMwgrUs -mDK9MayG0NR1vSL1hCMvVJa/E51R4KrvcmYNeasyd+4 --> ssh-ed25519 s9rb8g e4cryyVo/HTaaSLVIC4kMG21BnsoH7bRplWEOjYnwHY -E/TYuR1qLghObgIkpPq4bKM3PO4ic5GbBMULcGqRrKc --> ssh-ed25519 +xxExQ UqbDMy/Uhrgme1bPhTQECNQLFN3wGMXCYcLASWGjz3c -4kDDmlRvD+H3KzQisR55xMV4pY8hEyzEpvATy/6zfSU ---- zCwuIqNRnSKWN0h/DWaSPfJXuhNYtvPU7N7jrTdPOW0 -DCO?8Rv8/SCo¨s6 r"`䋅OT ssh-ed25519 9PfEBQ 3KQbBZkcZtTdVJyigPXx/1coiIu82Aq20QdSGitNLxM +VmTRos/BwCQmc05KytNZqOX6XaFJaUv394HSiAUDimY +-> ssh-ed25519 s9rb8g +zrftms2vgssMyr1HNeZmtQZ/j+ok09nSb/aGhEL8WE +9whXdOaz1L+6Xd97a0WtmTa2aJgx9S9nlNmaNNBMevc +-> ssh-ed25519 +xxExQ CSTsl71wyqNo9M2CUWMDvUeVa5KXvs2OBTk1TGRN9jU +mgs+rLiqCuIyWFkmy4DN4mHmMKr/65ncDmx9wubkxoQ +--- 3AvdQU+PhfiSAGxHXYQN92cCNJJWicGm2uSmerpF5/4 +EV=خ\i=)zA捛YS1kuZm}H8D0WwpA3$*! \ No newline at end of file diff --git a/secrets/passwords/networks.age b/secrets/passwords/networks.age index 6203e4ae..32777707 100644 Binary files a/secrets/passwords/networks.age and b/secrets/passwords/networks.age differ diff --git a/secrets/passwords/services/accentor.age b/secrets/passwords/services/accentor.age index 291bfa87..2c2440da 100644 Binary files a/secrets/passwords/services/accentor.age and b/secrets/passwords/services/accentor.age differ diff --git a/secrets/passwords/services/acme.age b/secrets/passwords/services/acme.age index 14c57cc3..1c6f11fc 100644 Binary files a/secrets/passwords/services/acme.age and b/secrets/passwords/services/acme.age differ diff --git a/secrets/passwords/services/data-basic-auth.age b/secrets/passwords/services/data-basic-auth.age index 8dce5863..d0326129 100644 Binary files a/secrets/passwords/services/data-basic-auth.age and b/secrets/passwords/services/data-basic-auth.age differ diff --git a/secrets/passwords/services/garmin2influx-env.age b/secrets/passwords/services/garmin2influx-env.age index 6fbd7938..94996e13 100644 --- a/secrets/passwords/services/garmin2influx-env.age +++ b/secrets/passwords/services/garmin2influx-env.age @@ -1,10 +1,12 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ P/iXt6DwkOx4FnWnW9ZQpwmGpStBCXv1cqJaivDYrQY -6Jt8TVI5xIx1AUxm6sv42IRrqF2cGPZnoHLfZvSjRB4 --> ssh-ed25519 s9rb8g 68rwIhIOIiiWp3SV3/oWK9MV0dBeCUbTggnU0m5WUSY -OLJoQdgWgvI/Akjvg1CnqGsKQr20jRzHjbm84zg8qu0 --> ssh-ed25519 +xxExQ NCpGQ00m04rPF0tZpARKNv4XVoJk3zx8J4H0UxPqs1s -KS64/WZ9nmOWXkl3zHuUrdgkCfx55FStRN7iGdhsfWQ ---- lFZLS6ovVCj8yOf5lq5lTg+R2BrOUM0Ct3ocIAq0qyU -d%}fn~[9. jWws -ȹb]7uQ- ncܥ Bse37_سKN@ P/*s4+s%vyWrX iɔVzdX sOԦR$]:jH*p`%3x^x#fX'3 \ No newline at end of file +-> ssh-ed25519 hKAFvQ zy8/GFzzqj3krfMvG4yfquIk+Zb3jvaXEr3BcrFipCo +69wHIl2D5zk5SwI3g+x2l6R/gOkzdmk4XJiqxqsFKbg +-> ssh-ed25519 s9rb8g eDsREcYwdXWIX/xal3NBynWJTMdJic9WT0DRahF8BCY +rgpQahU3pVOxhq9QY4p1JUotHfpTIrJ2zu54crHd37Y +-> ssh-ed25519 +xxExQ IXP1FLeu6l8PeOobtEMCXbByf3UjeBPP9ML28MhJsHE +BpW2juq4HGkvz/zEo0sO7KZiaUf88t2pm5H0v7MDVpA +--- Y6HKIw6FURfKH/bnwPvHpSSKP5ouhZZVPUpN4YJCYP4 +m AӐ1OB' xJDhJ#8-ĄtO`S0 +:2/?t8yW(Q{D r +1hO[vkwGxüj\`upƿݰ2j- +huiryO9^jv;ˡv*qx IKLא'5{n윤G5%_ \ No newline at end of file diff --git a/secrets/passwords/services/git/db.age b/secrets/passwords/services/git/db.age index b641d0ba..619d5807 100644 Binary files a/secrets/passwords/services/git/db.age and b/secrets/passwords/services/git/db.age differ diff --git a/secrets/passwords/services/git/initial-root-password.age b/secrets/passwords/services/git/initial-root-password.age index 12b6634c..84115b49 100644 Binary files a/secrets/passwords/services/git/initial-root-password.age and b/secrets/passwords/services/git/initial-root-password.age differ diff --git a/secrets/passwords/services/git/jws.age b/secrets/passwords/services/git/jws.age index 3bc7d9fb..85d7721d 100644 Binary files a/secrets/passwords/services/git/jws.age and b/secrets/passwords/services/git/jws.age differ diff --git a/secrets/passwords/services/git/otp.age b/secrets/passwords/services/git/otp.age index da4f9ec2..d08b8f56 100644 Binary files a/secrets/passwords/services/git/otp.age and b/secrets/passwords/services/git/otp.age differ diff --git a/secrets/passwords/services/git/secret.age b/secrets/passwords/services/git/secret.age index 2d6ffc02..9bdebe2c 100644 Binary files a/secrets/passwords/services/git/secret.age and b/secrets/passwords/services/git/secret.age differ diff --git a/secrets/passwords/services/gitlab-runner/registration.age b/secrets/passwords/services/gitlab-runner/registration.age index 53df581c..11ec0af8 100644 --- a/secrets/passwords/services/gitlab-runner/registration.age +++ b/secrets/passwords/services/gitlab-runner/registration.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 9PfEBQ SA3EHQ64UDLG7g4y2GWpSYuYZyqqxyACtnIg0NwSYU4 -OFQTXwfRgwHUDCqZP6F900LHirm3R2UMqkAsLAMtmtY --> ssh-ed25519 s9rb8g KkG6VSj7x8KuzUgx2opJQma9GUGskxAZGD8TP2dRnkg -isP9uRXXlay/f6gSRnfIKpetFlpyXQgVBSG1j+xWFsM --> ssh-ed25519 +xxExQ tU1PRzd0ZUTGkpHxQ40Jw7ihNXrbVPEFRXPqZE1cCj4 -+0Fa+IhqlKzuBGbSZHshX6gy53Ri1bl60ulT1B9h3uA ---- ILNjRSFqaQIpj0W+OVx7JXhUo3GE5ddbboEM/CSEzlU -w,_V:Fѷܟ8aakRVZ4hVUŬbrcCGlWJ\X*+bU˙d6{}(P ̤#no \ No newline at end of file +-> ssh-ed25519 9PfEBQ aTq6fX/Jo0KF1zxcOg7FKuS9ERxrvt6anFD16TsYNlg +FaPn6L5SfWPXuk6rMS1VQD3P7EQf/AH/eNoJuERr85w +-> ssh-ed25519 s9rb8g 25iqHluvcW0rh15OtRSr8TIUlPStWk2gQHx7Qi1SlRc +ZaXOPWLg1wQ1AMk1SBOicxmbeB300/f/7rIeet7Qt+0 +-> ssh-ed25519 +xxExQ ZYHdj2IwVqbNExzcON78bDbm+iSRQxZcNQ6PREP1Aj0 +QWQD3C+9Jdp4IqmgiZaK1wfHsrtM4ej+2m1hoU89ozM +--- YZxWn2CN2LfT84iUpZO1iQNneSQjZSOh9vYGZQ6Furk +nt.>mxr?]TG޼ D̏\G}JQZmOĔ 7 Btkuoo_أvUǔAcS >՗^Mbd \ No newline at end of file diff --git a/secrets/passwords/services/grafana/admin-password.age b/secrets/passwords/services/grafana/admin-password.age index 3709c9b6..13e38fb4 100644 --- a/secrets/passwords/services/grafana/admin-password.age +++ b/secrets/passwords/services/grafana/admin-password.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ nT+Cp76mftRMGMnKiYUu0ALUeQKKiZ0o7cNW5R6/k28 -WysS9H9ohZeVPevkLim+ZDz3abe+kzZhGRJMw6kkNk0 --> ssh-ed25519 s9rb8g +Jd+7/YYfZeYdBmmggBcbY1gvVifdjtmtg/JlBJpeTE -b5urCah66qLNNzGZ5xVp+KubQox9yKnfKRxCCSNf95I --> ssh-ed25519 +xxExQ Ox8byNTwYYiqoENgtEsJ7svG3OrLad3iNrU0MB1DRWc -QjoqM9kGSZrolkxuAWvY8LCb+KdO6w5Xq+lKAWbHOx0 ---- SbgpwekEbD/5vatFuHCCvw8D4J6JEYkn1ZN2RHtiCqU -&HX /il;l!?67U 寶 ++As[j \ No newline at end of file +-> ssh-ed25519 hKAFvQ iurHviYsNlP3pQGJJJXRm4Ru5T5Eoa6fcNF8qRnEUEs +p7pGfcFjw63vkSe1tEkcStePgbr24k6wkSXkO8TvTdw +-> ssh-ed25519 s9rb8g SElvfyXvqJm7P5XsvdQJdMvKQEjNsO039i/zpBtmnQw +x0PWVRAZo5kNTRfqxeR+3pfdiN0D6rQigKNOMe7dvLA +-> ssh-ed25519 +xxExQ l12Hm8fHih54rJkULfdt1naCbhwmw56eWUgHNPWbxXM +r+YdLKGkVq0a7tF/LG6yyarcFzSZrpIR6Ju01sp5qZ4 +--- zaAW0uJbj/HdQsO9RLK6vb4O8GdisC9dSBInB5S0uUo +n>OQ,"5^X (7f\ ssh-ed25519 hKAFvQ ZdaD5GwosCXIHnJubCnDjKvopF4uxMoeNQMgFCQf7WE -tLfDwSJavhjFF5XcXwWEnM/n1ojFToi0eApNZrzt/qc --> ssh-ed25519 s9rb8g WFDBvaDUVlHleR+NW3NLsbm8F0FFGIqu0+2X2mbtekM -jhbEBhGr3zsxsFnAVYBV70RchESP1sUCthLUu0OQ7Jg --> ssh-ed25519 +xxExQ T0PsbQpyoX1UaKHvMgfvFDCcctrPJEkQFvsgYJOJuGU -Nxh9tk0TAZlNjukruwIiakzm8WD+VILCAf1+bf8i+JE ---- hGyHnFZWOfMID75QNdTTj+7qBhfwVRMt2LG5TgyUWSY -G_aP B:O@͟8+^*]U 0I -4$qJ2?C \ No newline at end of file +-> ssh-ed25519 hKAFvQ hyz9BSOkNkLW17lQMA0lh8WeDurIlOTEqlPzIbD/Pgs +6Fnh7o2rT1VzBSaHq8wR+e2N0xfKD29xVFShgqRszjM +-> ssh-ed25519 s9rb8g eTlEDQ0VagVefzdimiQxxCTmOlzxxflo1FHUCmVYHBg +m9nhs548+NCEkqWVrcFDY+mIOdtnL5sI5mEprAjq2Vg +-> ssh-ed25519 +xxExQ wJJJtCDx7DoVSFcxMO6AQAhTf/qdvlYneR303ZB4SXQ +D8Ps3b2d40XMzEi9nm/sqHBSH+YT05fw4pUVdtrtPKg +--- SRPO+UPASBhAHY+4S1YHFhmzbmbxgGiqM/g0scYqjS4 +S vf_'ee똧ytMzI[[k/w.$|p \ No newline at end of file diff --git a/secrets/passwords/services/mail/charlotte_at_vanpetegem.be.age b/secrets/passwords/services/mail/charlotte_at_vanpetegem.be.age index fa75ad24..1fb284af 100644 Binary files a/secrets/passwords/services/mail/charlotte_at_vanpetegem.be.age and b/secrets/passwords/services/mail/charlotte_at_vanpetegem.be.age differ diff --git a/secrets/passwords/services/mail/hallo_at_estherdereys.be.age b/secrets/passwords/services/mail/hallo_at_estherdereys.be.age index a1482cd2..069b1d1a 100644 --- a/secrets/passwords/services/mail/hallo_at_estherdereys.be.age +++ b/secrets/passwords/services/mail/hallo_at_estherdereys.be.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ 7KhnXb6qh8xLg7qGeRxvGEpIyLW3yx2QOJVT+ww1JEs -GabpwjDDjXqgskdAkSRi4tmWFaGRau43Acsk4O22dME --> ssh-ed25519 s9rb8g e5e4EhxzFmsYBjmakWZfYvCoUTUI0CcoUH/yvHuxMwM -KKsXbHAl9loKZUgDxasCri0PMhwuDouXVsQjIJbj3nc --> ssh-ed25519 +xxExQ k5+/txI83S8DQiDD6epU8VfSnoEXl/nVvTGvRk41qAs -hqgeAHZ+h3DjRM5Q0zEM3PHsPeATlBxOxaRwCwqIEto ---- q+N7IXUCxMkjUfZ19dLzkHKlF1k5z/zQ6uTawV9uKks -!)$ T:ɨ ssh-ed25519 hKAFvQ NaXnB/5rEPeG2ZVK/CUbdk4WGWNKpNgKbJ1SvagCVC0 +K/Wj2g3yUAaSr/OG8mhQ2IskbQj/iBTDY1rcQxMuCqc +-> ssh-ed25519 s9rb8g XhBtUFbdcTMYqQc1jSX3m/UU+NUMzzIvBBMSy35Z1Wk +SYvOYgyxgQPfy3rpNBexmsPVi5Lzbi9Z6nuC4L9ngeo +-> ssh-ed25519 +xxExQ AYaCYHcN49Ky06msB5IhOEFcXmEDj3JQxQVXyEb2Nn8 +yB9tZLsdfRKAXdPvckLmfw8u+de2LPF6AedGAw2aa8g +--- lWainh1271tNnvQLdZAjInjnfnd368oWJUq4LPX0Unw +cTKӋ* r' }׷ҹ0܍Pe{`MxmS*mԑ\Ej[F[Э9( \ No newline at end of file diff --git a/secrets/passwords/services/mail/hallo_at_robbe.be.age b/secrets/passwords/services/mail/hallo_at_robbe.be.age index 68c402df..127d5a97 100644 Binary files a/secrets/passwords/services/mail/hallo_at_robbe.be.age and b/secrets/passwords/services/mail/hallo_at_robbe.be.age differ diff --git a/secrets/passwords/services/mail/huis_at_vanpetegem.me.age b/secrets/passwords/services/mail/huis_at_vanpetegem.me.age index 0ad42749..c2d75714 100644 --- a/secrets/passwords/services/mail/huis_at_vanpetegem.me.age +++ b/secrets/passwords/services/mail/huis_at_vanpetegem.me.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ ZiWBvXaZ4Z/WI8u8gHHrsV8MN41YYXLbnAC3TgRD22Q -kr9IGc0zISqtXzbl8gXeiHrJzM1GkLjygn5yv3IS++w --> ssh-ed25519 s9rb8g rs3sqYcPE+REHRsr9R85Y8XQyjn/lh4ljgzFba4N2Ck -wC0ZwVWx/IjZt9EJNvjY0XFfKs8bYzZZ0Pt6HINuBDw --> ssh-ed25519 +xxExQ skC9W31oAazBLudQCi8klciiDsrREnEtj6yRPiekwHk -UfQzKjmB+xhABVSvLXTLEQMJx5LptV6wymX1slhvah0 ---- 7T980oZMs64THN+RgWKEcS+ZUPmU9AoO6v2HRvbo+lQ -@=P'?V;(U]) :=3ؗtHmZ<>zr /WOY:6ՐdFf}#(Jy; {hvܻҥx1 \ No newline at end of file +-> ssh-ed25519 hKAFvQ HFsrqFm0Zx8TQ/TjnkuimypbptGl5e6AYE1SOKpKXmo +YLTQUB1bX/gxjCvQB5E6PiVgXjAdB1pkWrT2QoD603k +-> ssh-ed25519 s9rb8g ZOCaBJx/KDvtuUsCXi4RjMTHONzG85jvpCdf5SksTXo +X7pEoM3llkbTeHk4rP0lxUaWC7j8Q9nKUHz2BaazhwA +-> ssh-ed25519 +xxExQ 5ZRB9JWfgBTYKQFTaVQqkoxkAD7TOpJynKEReSWkr0g +E+JR+7KIDdZ5ucZvGAxLA8dTntWdAu/RVVUv5lzDquk +--- 2ogUIe399UQYP7BZG86tB7Uv1iY3LANUCCikmM+dKtk +4@rZiBy  PdA הFLan"}Ljlx)c.}f G>#z%ƖFǵX>Bc \ No newline at end of file diff --git a/secrets/passwords/services/mail/info_at_eenstweedrie.be.age b/secrets/passwords/services/mail/info_at_eenstweedrie.be.age index 1a8d85ea..11d48102 100644 Binary files a/secrets/passwords/services/mail/info_at_eenstweedrie.be.age and b/secrets/passwords/services/mail/info_at_eenstweedrie.be.age differ diff --git a/secrets/passwords/services/mail/noreply_at_vanpetegem.me.age b/secrets/passwords/services/mail/noreply_at_vanpetegem.me.age index ed1cca41..4c91944e 100644 Binary files a/secrets/passwords/services/mail/noreply_at_vanpetegem.me.age and b/secrets/passwords/services/mail/noreply_at_vanpetegem.me.age differ diff --git a/secrets/passwords/services/mail/peter_at_vanpetegem.me.age b/secrets/passwords/services/mail/peter_at_vanpetegem.me.age index 18a9047b..e1894562 100644 Binary files a/secrets/passwords/services/mail/peter_at_vanpetegem.me.age and b/secrets/passwords/services/mail/peter_at_vanpetegem.me.age differ diff --git a/secrets/passwords/services/mail/postbot_at_vanpetegem.be.age b/secrets/passwords/services/mail/postbot_at_vanpetegem.be.age index 12d4640c..3e528f42 100644 --- a/secrets/passwords/services/mail/postbot_at_vanpetegem.be.age +++ b/secrets/passwords/services/mail/postbot_at_vanpetegem.be.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ g8o4BDUHi5D6naTMjGDTsdKZXsmIcPlQcNfFM8ko5Hs -F6bydEWhFifFOgjgT3KMsPQVQ+Pp7kfxfRusB22N41I --> ssh-ed25519 s9rb8g 5RPXl7j9R5ablhlsijn2ib1MltCZaY2lfOYDocuVwQk -jSh2Wq3+nBI+qwTblL4Krcy0XXZoi2yPLCcN4tXZMIo --> ssh-ed25519 +xxExQ GSnNp2rHrPCUGohNysKP+cwM94jO0q9RhEqSuT68hCs -1kabK5mIIEUctUUmwcYBhVC7CzsJo413fvrTZTm5wO4 ---- wlbVF2G5q40syynTf5nmKbwmQu2nRPJtl45y688s9rE -K OE!cMQay:.";UY@k hQ7/xtw]xp -$Iya(]&p .Ii*6S.e \ No newline at end of file +-> ssh-ed25519 hKAFvQ 7pDwE0UM4MI8CC9vRpDStGKK82OyGC4L9LcFHVA6Z1s +5qrq4SoD5/F4Z29M2GfVT92kuo/Smh8Aoc2NafY8zsw +-> ssh-ed25519 s9rb8g gxTK4z5waBTXvNOXiBsAo1iuL6kqby9UKs7+LZyoLX4 +9HWPVYuPm2QI7YH9yYoHyBZYeZbZbKepS9lR9KdKBc0 +-> ssh-ed25519 +xxExQ +zupSaUETOO3RtDKYiCiugePFLFdQ6pirHRjL+C0bCw +J6Z0HHsLSnNQast36K5fIm8FjEQC0+MiWzYHdlRWnTw +--- PrEzLIPYI40LLjbzujAr29Zgzl+6b3wTYY/x3OR/uJw +@{H&mg\HJ6l)(;TMA780@'ggᴅwy-IGBjUD XLTYjs;0ݚy7 & \ No newline at end of file diff --git a/secrets/passwords/services/mail/robbe_at_robbevanpetegem.be.age b/secrets/passwords/services/mail/robbe_at_robbevanpetegem.be.age index 7c7f461a..06826fe5 100644 --- a/secrets/passwords/services/mail/robbe_at_robbevanpetegem.be.age +++ b/secrets/passwords/services/mail/robbe_at_robbevanpetegem.be.age @@ -1,9 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ 03JOn7q1PHA1SWJSxu0sBzu7K2SUjHfJjeWyydfFHgg -4p3qrVEhdpIVXsJT46hThYpg8zzNoYqYtL9Z2rbUWGc --> ssh-ed25519 s9rb8g mDKTHZetoIGkUR9gHbidTICfszs7vLprqnTxfqcSL0I -+RMUasl5OTtkB/mMaSpXX/0rwOgd79cdIEFX9zEnYXM --> ssh-ed25519 +xxExQ SB6XAvC/764Svp5uPmTBAHrCaCMYhvVj3XCd7qDKVi4 -R63MVNMyxrGMlVTpvnSR9vDwK5rn8K+QR9PWtp+eV6M ---- 1b1e53bIpHE6YSlrZxP5FjdtjWSwTLX25uOd71QaEu0 -uk}u{n4kT#2`HۛS)CyPx#r,d6{7)jBǰ.SF|ZxG[* \ No newline at end of file +-> ssh-ed25519 hKAFvQ S5DvfYG8PgrzvPH7r59Atq1Sq7nw/XBYxgoFmexs3SA +eSm0pJRbpdtnkB1/DIuZ+UKatKolyP2MLtMQPnSKrYE +-> ssh-ed25519 s9rb8g 7ggeFLG9zIZzuUTXzZ2d4Oi7AIMnWOrIMXx2gBuGSx0 +wzMWm2+7ydXj5CSH3w4kzUZTTCqjgtkxIKvUMuGd8MQ +-> ssh-ed25519 +xxExQ +g9mr6B9mNXb4+Of+U7LPGRhGyO+k0HysvBOczt59Ww +dn6r5lZH/qkkOnr/Ly0GKY41LEdC6IAkW/Y+gYX0FuA +--- ahhUTElqxaKBKUI3VVmAp71TyDmALhwJPAl5xABFr0Q +&uÖF?ה+ GEޕU`1վ0*ʍE Qm>zT"p? \ No newline at end of file diff --git a/secrets/passwords/services/mail/robbe_at_vanpetegem.be.age b/secrets/passwords/services/mail/robbe_at_vanpetegem.be.age index 589684cb..bfef1bc5 100644 Binary files a/secrets/passwords/services/mail/robbe_at_vanpetegem.be.age and b/secrets/passwords/services/mail/robbe_at_vanpetegem.be.age differ diff --git a/secrets/passwords/services/mail/webmaster_at_vanpetegem.be.age b/secrets/passwords/services/mail/webmaster_at_vanpetegem.be.age index e435e121..962bb8a9 100644 Binary files a/secrets/passwords/services/mail/webmaster_at_vanpetegem.be.age and b/secrets/passwords/services/mail/webmaster_at_vanpetegem.be.age differ diff --git a/secrets/passwords/services/mastodon/key.age b/secrets/passwords/services/mastodon/key.age index bf29fa6b..2386050a 100644 --- a/secrets/passwords/services/mastodon/key.age +++ b/secrets/passwords/services/mastodon/key.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ QC3grxDOHNRaLSe5TwrMePZEDMinnGJnK7wod3whUDU -xWDVDZdsXHKmlPm228zXTdDiT/s9GxutUZ8Ti7/fD0o --> ssh-ed25519 s9rb8g 4IOLDbthErXX+bF1fWySCMuZNEUig8BEbTfCsude/ww -peWFS0sO+YROBTVNrTxElX5v7qvY+GW3lA7aOlqs2t4 --> ssh-ed25519 +xxExQ GI/OuNpq7LalFbc027hmnWHAaXPZc1GycQnq5KKJEBg -XHG2Qh3y2NtakGehoRYYZxqK+b2hi/h9wfUAEaeVpV0 ---- i9mDDOIKz7dJLg7ozeEiRDRzLyaC41EOyZFxySxz364 - kM7k\?y 2K֘qP$`ݤBtGx4vĪ qUL=2`p1$w3<~Y&IRzСg3KD]^ɔ +{wũ~}Z707\.]T:S6 t8:o: -L™5 \ No newline at end of file +-> ssh-ed25519 hKAFvQ PybLsUgVDc+/5BQTX/BqxuVxQ7zllZ0lzf+TXnukWCM +xQiABagyDsF5EZ+AgIumgy35JDEeX9xBaHgWhCLIyNI +-> ssh-ed25519 s9rb8g eOr2Adc2oUKsbPCeS8smg9VvDxtTbdtsChwakOsQsm0 +DU55bhdrM6VoOCmazMfbmjMOMK64S071yCmrcH5wpWk +-> ssh-ed25519 +xxExQ 0xxDBWeX/OHWgFtzKu2gDvh4XQ+eIiz2inQ4ja90cEk +QRbsxX7a/HNZbdQ0yHaHCoC3GgNdaNSv1r+E1pR0TQA +--- 4qFchQXwqPei+WT0gc63To0pUfp8i2wrRq96b5EnkLs +\@h~WԊY< yz9ʣ݀ul8~3J72lP2$oԴ0ltKK(X/ow*=߬w@7͢- ;p\uBF?AidiH$;ᛣT1`4>/<,{B \ No newline at end of file diff --git a/secrets/passwords/services/mastodon/otp.age b/secrets/passwords/services/mastodon/otp.age index 1ab913d7..7472837d 100644 Binary files a/secrets/passwords/services/mastodon/otp.age and b/secrets/passwords/services/mastodon/otp.age differ diff --git a/secrets/passwords/services/mastodon/vapid-private.age b/secrets/passwords/services/mastodon/vapid-private.age index e1952db3..dbbcfd1e 100644 Binary files a/secrets/passwords/services/mastodon/vapid-private.age and b/secrets/passwords/services/mastodon/vapid-private.age differ diff --git a/secrets/passwords/services/mastodon/vapid-public.age b/secrets/passwords/services/mastodon/vapid-public.age index 06af4d48..51d15dd8 100644 --- a/secrets/passwords/services/mastodon/vapid-public.age +++ b/secrets/passwords/services/mastodon/vapid-public.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ lt3wB//Ce/wutBr+hJWEXgtVmOcybSdcbvC70E1nHTA -QHUOJb/dI7TmlhbvbhQSvUXI0VjAH7fs8kWEpcfGj/w --> ssh-ed25519 s9rb8g FzWoMuD/jGrs7kZ9CGISQvsvr81/Xko0tWEgRXpT0io -tPCjGnMHHT7pWg1upn4RBLJXsD6610SyKC3fh5syCJM --> ssh-ed25519 +xxExQ 8ljwJSnr3KLjfFuPC3CcVvFMqgRq3opbAugV+UnAOyw -ZdWcbdLNP2mD16Eq0aO/Fr+tjCR3h+RaIH44b9fMngk ---- UGpuCNQzRxUYhv5hINmqUQVAq2mRmQlVzOtHES4uIDk ->[! -!bc89[chb`i;t ssh-ed25519 hKAFvQ keeryUAZ8NUaHNHFKwIbG1TACDy41qrnFblA3caHXDk +2uLZkLPzz4dRFgw82kcdsSvDXqTaIntjZyolLWdmx+Y +-> ssh-ed25519 s9rb8g XOTgjMzhPAqGnUe/6KCh/QTd6mCYDfi1QfG+7QdNEDc +L5IKwjo9qfoMgm2ptKbHFgKjlAeGFZIhVSPhKrG/4fY +-> ssh-ed25519 +xxExQ gvvmxay5aQBSpWqbI36b6kviPtOtnWlYStLPzbHkRRg +Kw9qTXYDevQlLVrCGef6QPGrDeHQ7tjRj0aFB30nIc4 +--- hktDt79HatBwgNvwdyF6CdvpFBjPtiJ1hgTVApKM/jk +xng`ŋkD7F9V&e [4Q ~AWXboKRwBĬ8e]". l\Ł(GR6ⶅU4\ةPi2kx:AZ @k-l \ No newline at end of file diff --git a/secrets/passwords/services/nextcloud-admin.age b/secrets/passwords/services/nextcloud-admin.age index 06d4de8c..0c1798a9 100644 --- a/secrets/passwords/services/nextcloud-admin.age +++ b/secrets/passwords/services/nextcloud-admin.age @@ -1,10 +1,9 @@ age-encryption.org/v1 --> ssh-ed25519 hKAFvQ lmtQyJYfwRpKX3Um5ypYlaUgWbYpMxGUctHCXaH6sHM -p8c2X5lhENyAD+09NbJWrK/KPhb2tKw2vvpG35kiZbk --> ssh-ed25519 s9rb8g yEqLS9X6QLWCnQ6X05ViZpnNRlCYok3YQ8lAXiRTNjQ -vxG3bErvetDX/EvEuW+nQYBZt452F2h+qI3Q0NfjNlQ --> ssh-ed25519 +xxExQ WYk3NQNcdMrpSWSJbN5mgMuXL1gleKgjx66dl1QPW0I -t+3u5/YfWmnKPEY7JIoEPlFrw0KbSSVo83eKK/DYaL4 ---- SJp+YQw+bI65W2mBCrgRtsH5RARYDNLhgRK2dW5QwNw -RQ)$];W[Ne QRŃy>wx'}/芋9RO -D \ No newline at end of file +-> ssh-ed25519 hKAFvQ +ILxQmGVEoXrHNkdinXp9yLdMTxr/bHVb5hd6AyYkFE +6c+Ck83kskgGmxrZoup9OMSmsS6JiYCO0+0g1mFuFfE +-> ssh-ed25519 s9rb8g iMC548UtkARVnW70nSGZuaL+bxEA9I8FXHMS8dTs8z0 +3gSThl/VsHf38bVItBgUf8T40bu6SHiyuX2FEs2ushA +-> ssh-ed25519 +xxExQ yHP0FcZWCh+F8LUA0asj+VBBlmCeRWpkZGDixIiIeSs +yRaBr0JFIRhdXM5b2GSKrMRctxng1pnLSaRlufn4TSE +--- K/2+GHljpirWM9HbBUVl0OI8RZHEHEbQqMx9cF6v93Y +q 0嚱Ź$q9ډTNMB/?Y_6 wRтh% \ No newline at end of file diff --git a/secrets/passwords/services/ssmtp-pass.age b/secrets/passwords/services/ssmtp-pass.age index 33663c09..b9f9ff67 100644 --- a/secrets/passwords/services/ssmtp-pass.age +++ b/secrets/passwords/services/ssmtp-pass.age @@ -1,13 +1,16 @@ age-encryption.org/v1 --> ssh-ed25519 aUd9Ng foBs30TlyKpk1wySoa6SsSXS7Ju8KNBX1pZuNWs11Bs -auVxSo1Fig/NFkwtepnp0ntyTA8BhrLYS0h0lb04xIo --> ssh-ed25519 hKAFvQ TWgmABTSxJgpxZAJ/8N6ptzs4MQo8sRSv3W8eEQdEXc -M360vNpsgNZnpDInQtGaPNi8BboBpW5p/c1t6UTsKIk --> ssh-ed25519 9PfEBQ gt86FDvaNuDS78rJsxHz9W5LxngKK/q5q5hZnmt4CUs -xI5CwJ3lAYJfV28eB7aMpe6SFyGpVYXhpnTWBtPubmc --> ssh-ed25519 s9rb8g dnmjTb1v5JMZhUqG2WuTzmnR4zDbMk5LFLGHm1F8Ymw -SpBC3ZZePjiqKDB/OazFbmGPkmzbwNlQx/kD73rNdhc --> ssh-ed25519 +xxExQ vBIjPOQuwTwz7YrnuU2rbPN9wXvGHjEO7E5HR/cDyVk -7YCM6s+YyGtBbrQbndXz2W5DoSJvb7PfHNcYE2JFJT4 ---- HzYtDgoc8NHVzNsSoVeC0tiB8wl/o/bwvocktfHXFws -T#($KԢ嚩}1'硨P~ 6Z 톼G} \ No newline at end of file +-> ssh-ed25519 aUd9Ng pm8c8jDbgf7JAN7/XTYo4g+diccyb0Lp4vghfYOn7mU +jVtY8s6GL9Dkfagi3293E/ejwNYui9lR3nwB/JdBZcw +-> ssh-ed25519 hKAFvQ hoBobHDLv3YIwVUlkRNP+LTvrliLtOy1I7rX05QrIzM +Uc+HCrlaS3rqK/mMXIeCETE8DxK4njg928mQh8YAA6Y +-> ssh-ed25519 9+Fe5A pS0QjYBDhEs7fom0zB/V3+v0bbwv1VMvtB2nOwPXl0w +oyyCsAhUOHTkYHjb1jasHilr9bQeexx2Yb4zA0Lds3Q +-> ssh-ed25519 9PfEBQ tFBacpNPjHeV4kfXYAbdUGHpqh1xEE5YUXeZfKK7JAs +CFxNM1ljvT8hibyytp72byM86vdpYYc93uWz3GJjM9s +-> ssh-ed25519 s9rb8g dtCelndvV8Y//ol8UHbs9/vkhxuUd5nehy5pQDcJbwc +Rkbg2j57rpSW2WmknaZ5fs5rs3zn45NqvAYunCigxJ4 +-> ssh-ed25519 +xxExQ ljYDIJWZcSM36KQGHaLjOqnH8n6bioaoAcEWX8uf/Vc +DlFTzT7vz/lT+FeFSiAm/eRthbbYMWX9rFaRWOf4N88 +--- 9Mxe5rfGNT9Vbo1BxpRG3svIAy0dWcyRTDJfN9tOMEI +voH =o0KZ,ML9Ÿㇴ +B,ySۮ \ No newline at end of file diff --git a/secrets/passwords/services/telegraf-env.age b/secrets/passwords/services/telegraf-env.age index 1513b554..0e7ca193 100644 Binary files a/secrets/passwords/services/telegraf-env.age and b/secrets/passwords/services/telegraf-env.age differ diff --git a/secrets/passwords/users/charlotte.age b/secrets/passwords/users/charlotte.age index 06771889..11e6b65d 100644 --- a/secrets/passwords/users/charlotte.age +++ b/secrets/passwords/users/charlotte.age @@ -1,15 +1,16 @@ age-encryption.org/v1 --> ssh-ed25519 aUd9Ng O+ZWi8l+L181aLDRLGlXFl0rLXKG1ggtrZQPI0HwtQA -EuJFdlHZ2jl3laLsv8LIEoXYWLZXdtmbY+/b4S2Z0mg --> ssh-ed25519 hKAFvQ Di23QzFzvyOMICiOE/mPw4sxYRUxQ1VDg2pmfUCJfUY -uSz2r7EGJxeZHUeodL8sIQaO8/7s2iF9NLOWtKJ/cH0 --> ssh-ed25519 9PfEBQ S5Eiv6BGE06l40aqXpZLaaKJlebrzZApnPCABYiB4Sg -ju6lTDaatMG8OwKkvgyQk028K6/pL/iKTyI5UvIwuos --> ssh-ed25519 s9rb8g oUCH5Mm29pWH4nhnFztJ0uSc8HDiSBgYKifq0AnTazo -4hlLfCiZY8OLJ9OzKTsbckTsVCzHI7HIrTlNcxTwWpI --> ssh-ed25519 +xxExQ YVnRp5Szd86fumWKFMsRxXPgiANZlzpOQ8T/WVhjAVk -j8dxn2e5NS5GWOFjjs4zMuisguXF0qQ9k1+DxY6C1sU ---- xe7PbC7AeM1/7+WyZ+j5gPK2doX6kQmXzpVaQ0ERWL8 -v0I|yBP"LiW<[H3f闶qfc9MzI QqxМ7g!ɵ4"ґ'/C93;d NᲶ -V^S|= -1!l;D \ No newline at end of file +-> ssh-ed25519 aUd9Ng ub2vl1VPK+AQCuSKE1PSXy36WQNGdSQJbMIgfmEfrV0 +Obn0JP77K8X2LO8v5/YudUJKrWkU/2j/zn+vYSPKNWw +-> ssh-ed25519 hKAFvQ 6i7oEW6C3YXj0awDxHt+rWcLakRnEtxI6IpVPmTM8mc +G4LOGwnUZ+gbr8oZj6IvJ2dg/PYFMBr4JUJOGuehs7Y +-> ssh-ed25519 9+Fe5A Lw6kjvgYwkiVrZaJWYhb0QmuPqXJvp8A/IHtxCX64hs +67M0das7hLe2OjEBLPTiN/ppQoUxDDzz6ZGLYJ+IfVQ +-> ssh-ed25519 9PfEBQ XuZL+aOucrpqAyG3YnhAFx4D87QFFJ47ebCfMQ3yJ10 +XPLoTyuISH0HgbbfO1/9wMOiIe1amRMIDkgokAa8K1o +-> ssh-ed25519 s9rb8g 7zrZCtnnV7msEJwf8eBTNoj/QAbOzR/bmhPRTQKm21A +pxaMFyoOH3tqNJ0i/x0rWbty/w7Po71C7nVQzQ5Ju1k +-> ssh-ed25519 +xxExQ envB2iwczELSMA0I4ag2eS+tE2Xvcdn5Og8KdlGZlx8 +9kNWUB2JjM1BVyQz9VEF3sffsGqAhZFKOc/5ng9N7H8 +--- usT6GSn5VrCeQuTe83lMIB7JwOtd1i7KwirNMQLemIk +yCaRp7ٕwklH|Q+LfZHΧxX߿8ғ魵ƫ;ݯ[r;KARtڗɆZ +xy~jK?]k(&lzE`#Mݿ \ No newline at end of file diff --git a/secrets/passwords/users/root.age b/secrets/passwords/users/root.age index b4694efc..ff4dcc04 100644 Binary files a/secrets/passwords/users/root.age and b/secrets/passwords/users/root.age differ