NixOS-Configs/hosts/display/default.nix
2025-08-07 07:48:32 -05:00

16 lines
415 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";
variables.address = "100.72.208.107";
nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
];
}