From 94e28dca93f8481715728b006943a791fdafda9e Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Tue, 25 Jun 2024 10:24:46 -0300 Subject: initial commit for rpi4 --- hosts/iori/configuration.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 hosts/iori/configuration.nix (limited to 'hosts/iori') 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"; +} -- cgit v1.2.3