15 lines
375 B
Nix
15 lines
375 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.raspberry-pi-4
|
|
./hardware-configuration.nix
|
|
../pi-server
|
|
./kiosk.nix
|
|
];
|
|
networking.hostName = "display";
|
|
nixpkgs.overlays = [
|
|
(final: super: {
|
|
makeModulesClosure = x:
|
|
super.makeModulesClosure (x // { allowMissing = true; });
|
|
})
|
|
];
|
|
}
|