Update deploy-rs
Some checks failed
ssh-test / ssh-test (push) Failing after 28s

This commit is contained in:
iFargle 2023-12-11 13:09:49 +09:00
parent a6c0cc5006
commit 73e306fee8

View file

@ -8,15 +8,16 @@
user = "${username}"; user = "${username}";
hostname = "${hostname}"; hostname = "${hostname}";
profiles.system = { profiles = {
path = inputs.deploy-rs.lib.${platform}.activate.nixos self.nixosConfigurations.${hostname}; system = {
sshUser = "${username}"; path = inputs.deploy-rs.lib.${platform}.activate.nixos self.nixosConfigurations.${hostname};
sshUser = "root";
};
home-manager = {
path = inputs.deploy-rs.lib.${platform}.activate.nixos self.homeConfigurations."${username}@${hostname}";
sshUser = "${username}";
};
}; };
profiles.home-manager = {
path = inputs.deploy-rs.lib.${platform}.activate.nixos self.homeConfigurations."${username}@${hostname}";
sshUser = "${username}";
};
};
# Helper function for generating home-manager configs # Helper function for generating home-manager configs
mkHome = { mkHome = {