summaryrefslogtreecommitdiff
path: root/hosts/iori/configuration.nix
blob: db84c096431ad557bd099534d4648195d14505c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, inputs, ... }:
{
  imports =
    [ inputs.nixos-hardware.nixosModules.raspberry-pi-4 ];
  # hardware = {
  #   raspberry-pi."4".apply-overlays-dtmerge.enable = true;
  # };
  nixpkgs.overlays = [
    (final: super: {
      makeModulesClosure = x:
        super.makeModulesClosure (x // { allowMissing = true; });
    })
  ];

  networking.hostName = "iori";
  system.stateVersion = "23.11";
}