diff options
Diffstat (limited to 'hosts/iori')
-rw-r--r-- | hosts/iori/configuration.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hosts/iori/configuration.nix b/hosts/iori/configuration.nix new file mode 100644 index 0000000..db84c09 --- /dev/null +++ b/hosts/iori/configuration.nix @@ -0,0 +1,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"; +} |