parent
f214563739
commit
63c0768830
2 changed files with 4 additions and 4 deletions
|
@ -75,9 +75,9 @@
|
|||
framework-server = libx.deploy { hostname = "framework-server"; };
|
||||
nixos-desktop = libx.deploy { hostname = "nixos-desktop"; };
|
||||
nixos-framework = libx.deploy { hostname = "nixos-framework "; };
|
||||
nixos-rpi4-01 = libx.deploy { hostname = "nixos-rpi4-01"; };
|
||||
nixos-rpi4-02 = libx.deploy { hostname = "nixos-rpi4-02"; };
|
||||
nixos-rpi4-03 = libx.deploy { hostname = "nixos-rpi4-03"; };
|
||||
nixos-rpi4-01 = libx.deploy { hostname = "nixos-rpi4-01"; platform = "aarch64-linux"; };
|
||||
nixos-rpi4-02 = libx.deploy { hostname = "nixos-rpi4-02"; platform = "aarch64-linux"; };
|
||||
nixos-rpi4-03 = libx.deploy { hostname = "nixos-rpi4-03"; platform = "aarch64-linux"; };
|
||||
};
|
||||
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
username ? "albert"
|
||||
}: {
|
||||
user = "${username}";
|
||||
profiles.system.path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.${hostname};
|
||||
profiles.system.path = inputs.deploy-rs.lib.${platform}.activate.nixos self.nixosConfigurations.${hostname};
|
||||
profiles.system.sshUser = "${username}";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue