21 lines
424 B
Nix
21 lines
424 B
Nix
{
|
|
description = "oom-hardware";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
nixos-hardware,
|
|
...
|
|
}: let
|
|
system = "aarch64-linux";
|
|
pkgs = import nixpkgs {inherit system;};
|
|
in {
|
|
nixosModules = {
|
|
uconsole = import ./uconsole {inherit pkgs nixos-hardware;};
|
|
};
|
|
};
|
|
}
|