NixOS-Configs/hosts/display/default.nix
2026-05-20 08:04:16 -05:00

18 lines
426 B
Nix

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