{ description = "DRM driver and NixOS module for goodtft MHS-3.5 Raspberry Pi displays"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; outputs = { self, nixpkgs }: let system = "aarch64-linux"; pkgs = import nixpkgs { inherit system; }; in { nixosModules.default = import ./module.nix; # standalone kernel module. # built against the default nixpkgs kernel, if you need it inside # of your kernel, use the nixos module above! packages.${system}.default = pkgs.linuxPackages.callPackage ./package.nix { }; }; }