Archived
1
0
forked from rarias/bscpkgs

Add xeon02 configuration

This commit is contained in:
2023-04-27 16:28:12 +02:00
parent 5dbbb27c43
commit a211e9ebee
2 changed files with 42 additions and 0 deletions

View File

@@ -30,6 +30,28 @@
./xeon01/configuration.nix
];
};
xeon02 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
( {options, ...}: {
# Sel the nixos-config path to the one of the current flake
nixpkgs.overlays = [ bscpkgs.bscOverlay ];
nix.nixPath = [
"nixpkgs=${nixpkgs}"
"bscpkgs=${bscpkgs}"
"nixos-config=${self.outPath}/xeon02/configuration.nix"
"nixpkgs-overlays=${self.outPath}/overlays-compat"
];
nix.registry.nixpkgs.flake = nixpkgs;
nix.registry.bscpkgs.flake = bscpkgs;
system.configurationRevision =
if self ? rev
then self.rev
else throw ("Refusing to build from a dirty Git tree!");
})
./xeon02/configuration.nix
];
};
xeon07 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [