[lucia] add old conf for testing if it builds on 22.11

This commit is contained in:
2022-12-08 00:00:13 +01:00
parent 66969c0b68
commit cd4f858d8d

View File

@@ -37,6 +37,7 @@ in
];
};
lucia = nixosSystem {
system = "aarch64-linux";
specialArgs.inputs = inputs;
@@ -44,4 +45,23 @@ in
./lucia/configuration.nix
];
};
rpi1_base_image = nixosSystem {
system = "aarch64-linux";
modules = [
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix"
./modules/sshd.nix
{
nixpkgs.config.allowUnsupportedSystem = true;
nixpkgs.crossSystem.system = "aarch64-linux";
networking.hostName = "rp1_base_image";
networking.networkmanager.enable = true;
system.stateVersion = "22.11";
}
];
};
}