mirror of
https://github.com/nix-community/raspberry-pi-nix.git
synced 2025-11-08 19:46:03 +01:00
10 lines
187 B
Nix
10 lines
187 B
Nix
{
|
|
description = "raspberry-pi nixos configuration";
|
|
|
|
inputs = { };
|
|
|
|
outputs = { self }: {
|
|
overlay = import ./overlay;
|
|
rpi = import ./rpi { overlay = self.overlay; };
|
|
};
|
|
}
|