Test
Some checks failed
ssh-test / ssh-test (push) Failing after 25s

This commit is contained in:
iFargle 2023-12-10 12:43:57 +09:00
parent 3a8f273036
commit 53733f3c48

View file

@ -7,8 +7,15 @@
}: { }: {
user = "${username}"; user = "${username}";
hostname = "${hostname}"; hostname = "${hostname}";
profiles.system.path = inputs.deploy-rs.lib.${platform}.activate.nixos self.nixosConfigurations.${hostname};
profiles.system.sshUser = "${username}"; profiles.system = {
path = inputs.deploy-rs.lib.${platform}.activate.nixos self.nixosConfigurations.${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