This commit is contained in:
2025-10-29 12:40:29 +03:00
parent da880b10bf
commit 2864c06a54
+4 -2
View File
@@ -109,16 +109,18 @@
flakeContext = { inherit inputs; };
in
{
deploy.nodes = {
deploy = {
sshUser = "oqyude";
nodes = {
sapphira = {
hostname = "sapphira";
profiles.system = {
user = "root";
# user = "root";
path = inputs.deploy-rs.lib.x86_64-linux.activate.nixos inputs.self.nixosConfigurations.sapphira;
};
};
};
};
# This is highly advised, and will prevent many possible mistakes
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib;
}