From 20fbcbb5711ce9f962a3e7993c3b04c5d3a86a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Mon, 6 Nov 2023 22:05:54 +0100 Subject: [PATCH] fix: two typos --- flake.nix | 2 +- modules/users.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index f925a364..7006190e 100644 --- a/flake.nix +++ b/flake.nix @@ -80,7 +80,7 @@ checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) inputs.deploy-rs.lib; - deploy.nodes = self.pub-solar.lib.deploy.mkDeployNodes self.nixosConfigurations { + deploy.nodes = self.lib.deploy.mkDeployNodes self.nixosConfigurations { nachtigall = { sshUser = username; }; diff --git a/modules/users.nix b/modules/users.nix index e08a2c7a..0b9a08c8 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -29,7 +29,7 @@ file = "${flake.self}/secrets/nachtigall-root-ssh-key.age"; path = "/root/.ssh/id_ed25519"; mode = "400"; - owner = root; + owner = "root"; }; security.sudo.wheelNeedsPassword = false;