NixOS-Configs/hosts/display/default.nix
2025-02-24 07:52:54 -06:00

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; });
})
];
}