deploy: use system from host configuration
Some checks failed
Flake checks / Check (pull_request) Failing after 1m36s

This commit is contained in:
Benjamin Yule Bädorf 2024-05-22 22:51:30 +02:00
parent 75e65a73d1
commit 85a5a53254
Signed by: b12f
GPG key ID: 729956E1124F8F26

View file

@ -7,21 +7,6 @@
{ lib, inputs }:
let
# https://github.com/serokell/deploy-rs#overall-usage
system = "aarch64-linux";
pkgs = import inputs.nixpkgs { inherit system; };
deployPkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.deploy-rs.overlay
(self: super: {
deploy-rs = {
inherit (pkgs) deploy-rs;
lib = super.deploy-rs.lib;
};
})
];
};
getFqdn =
c:
let
@ -66,7 +51,21 @@ in
*/
lib.recursiveUpdate (lib.mapAttrs (_: c: {
hostname = getFqdn c;
profiles.system = {
profiles.system = let
system = c.pkgs.system;
# Unmodified nixpkgs
pkgs = import inputs.nixpkgs { inherit system; };
# nixpkgs with deploy-rs overlay but force the nixpkgs package
deployPkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.deploy-rs.overlay # or deploy-rs.overlays.default
(self: super: { deploy-rs = { inherit (pkgs) deploy-rs; lib = super.deploy-rs.lib; }; })
];
};
in {
user = "root";
path = deployPkgs.deploy-rs.lib.activate.nixos c;
};