wip(rpi-5): working on rpi-5 server support

This commit is contained in:
2026-01-20 21:36:23 +00:00
parent 92010eedb7
commit a0d8a1b0e3
4 changed files with 84 additions and 0 deletions

View File

@@ -63,6 +63,7 @@
url = "github:Nixos/nixpkgs?rev=8fcb6f1c4948305af52d19f887b89011ee2c080d";
};
font-patcher.url = "github:Doloro1978/nix-nerd-fonts-patcher";
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
};
outputs =
inputs@{
@@ -154,6 +155,7 @@
};
inherit (utils) mkHost;
configurations = [
# Desktops
(mkHost {
hardware = "doloro";
host = "doloro";
@@ -173,6 +175,16 @@
rocmSupport = false;
};
})
# Servers
(mkHost {
hardware = "rpi-5";
host = "rpi-5";
system = "aarch64-linux";
stateVersion = "25.11";
nixpkgsConfig = {
rocmSupport = false;
};
})
];
in
(utils.deepMerge configurations);