This commit is contained in:
2024-05-28 18:12:14 +02:00
parent f69e04ccbe
commit f554a154b7
10 changed files with 341 additions and 38 deletions

View File

@@ -6,13 +6,18 @@
#"${modulesPath}/profiles/minimal.nix"
];
nixpkgs.crossSystem = {
system = "riscv64-linux";
};
nixpkgs = {
crossSystem = {
system = "riscv64-linux";
};
nixpkgs.overlays = [
self.inputs.bscpkgs.bscOverlay
];
overlays = [
self.inputs.bscpkgs.bscOverlay
(import ./overlay.nix)
];
config.allowUnsupportedSystem = true;
};
networking.hostName = "nixos-riscv";
@@ -31,4 +36,5 @@
};
#environment.systemPackages = with pkgs; [ vim gdb neofetch gcc bintools ];
environment.systemPackages = with pkgs; [ rvb unalignedCheck ];
}