8 lines
154 B
Nix
8 lines
154 B
Nix
![]() |
{ self, ... }:
|
||
|
{
|
||
|
flake.nixosConfigurations.build04 = self.lib.nixosSystem {
|
||
|
system = "aarch64-linux";
|
||
|
modules = [ ./configuration.nix ];
|
||
|
};
|
||
|
}
|