feat: Added rpi as a ssh and deploy target

This commit is contained in:
uttarayan21
2025-06-19 15:57:29 +05:30
parent fee8fd0b0c
commit cdc60fefb4
2 changed files with 11 additions and 0 deletions

View File

@@ -12,6 +12,13 @@
user = "root"; user = "root";
}; };
}; };
rpi = {
hostname = "rpi";
profiles.system = {
sshUser = "servius";
path = inputs.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurations.rpi;
};
};
ryu = { ryu = {
hostname = "ryu"; hostname = "ryu";
profiles.system = { profiles.system = {

View File

@@ -7,6 +7,10 @@
programs.ssh = { programs.ssh = {
enable = true; enable = true;
matchBlocks = { matchBlocks = {
rpi = {
user = "servius";
hostname = "rpi";
};
github = { github = {
user = "git"; user = "git";
host = "github.com"; host = "github.com";