diff options
author | Leonardo Santiago <[email protected]> | 2024-06-25 10:24:46 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-06-25 10:24:59 -0300 |
commit | 94e28dca93f8481715728b006943a791fdafda9e (patch) | |
tree | 885ce13346799f737b17d34b453b344ebc852e85 /hosts | |
parent | 5b7c730721098a82546b8538e96d415ba5e8d914 (diff) |
initial commit for rpi4
Diffstat (limited to 'hosts')
-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"; +} |