13 lines
289 B
Nix
13 lines
289 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs?rev=20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs }: {
|
||
|
nixosConfigurations.catacomb = nixpkgs.lib.nixosSystem {
|
||
|
system = "aarch64-linux";
|
||
|
modules = [ ./configuration.nix ];
|
||
|
};
|
||
|
};
|
||
|
}
|