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