move deploy outputs to self-contained aspects

This commit is contained in:
William 2026-02-11 18:07:31 -03:00
parent d482fd0694
commit aac98fda2e
6 changed files with 184 additions and 198 deletions

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, self, ... }:
{
flake = {
@ -114,5 +114,11 @@
];
};
};
deploy.nodes.io.profiles.user = {
sshUser = "user";
path = inputs.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations."user@io";
user = "user";
remoteBuild = false;
};
};
}