test pi4
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
{ self, inputs, ... }: {
|
||||
|
||||
flake.nixosConfigurations."pi4" = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
perSystem = { ... }: {
|
||||
packages.pi4-sd = self.nixosConfigurations.pi4-install.config.system.build.sdImage;
|
||||
};
|
||||
|
||||
flake.nixosConfigurations.pi4 = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
system = "aarch64-linux";
|
||||
|
||||
modules = [
|
||||
self.nixosModules.pi4
|
||||
@@ -9,4 +15,24 @@
|
||||
];
|
||||
};
|
||||
|
||||
flake.nixosConfigurations.pi4-install = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
system = "aarch64-linux";
|
||||
|
||||
modules = [
|
||||
self.nixosModules.pi4-core
|
||||
self.nixosModules.pi4-hardware
|
||||
];
|
||||
};
|
||||
|
||||
flake.nixosConfigurations.pi4-install-disko = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
system = "aarch64-linux";
|
||||
|
||||
modules = [
|
||||
self.nixosModules.pi4-core-disko
|
||||
self.nixosModules.pi4-hardware
|
||||
self.diskoConfigurations.pi4
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user