nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

commit adf4d42867569e1558b8cffc760eee68d927a685
parent 8b047201614ab0893b502533c2d0cc0293ff0bdc
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed,  9 Aug 2023 16:16:06 +0200

Fix typo

Diffstat:
Mnixos/worker-1/configuration.nix | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nixos/worker-1/configuration.nix b/nixos/worker-1/configuration.nix @@ -161,19 +161,19 @@ sops.secrets.root_initial_password.neededForUsers = true; sops.secrets.ssh_host_ed25519_key = { mode = "0600"; - source = "/etc/ssh/ssh_host_ed25519_key"; + path = "/etc/ssh/ssh_host_ed25519_key"; }; sops.secrets.ssh_host_ed25519_key_pub = { mode = "0644"; - source = "/etc/ssh/ssh_host_ed25519_key.pub"; + path = "/etc/ssh/ssh_host_ed25519_key.pub"; }; sops.secrets.ssh_host_rsa_key = { mode = "0600"; - source = "/etc/ssh/ssh_host_rsa_key"; + path = "/etc/ssh/ssh_host_rsa_key"; }; sops.secrets.ssh_host_rsa_key_pub = { mode = "0644"; - source = "/etc/ssh/ssh_host_rsa_key.pub"; + path = "/etc/ssh/ssh_host_rsa_key.pub"; }; # Configure your system-wide user settings (groups, etc), add more users as needed.