24 lines
463 B
Nix
24 lines
463 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.raspberry-pi-4
|
|
inputs.sops-nix.nixosModules.sops
|
|
./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;});
|
|
})
|
|
];
|
|
}
|