snowflake/hosts/deploy.nix
2023-04-26 19:23:23 -04:00

12 lines
264 B
Nix

inputs: {
nodes = with inputs.deploy-rs.lib.x86_64-linux; {
hime = {
hostname = "hime";
profiles.system = {
user = "root";
path = activate.nixos inputs.self.nixosConfigurations.hime;
};
sshUser = "root";
};
};
}