2024-10-29 12:29:05 +00:00
|
|
|
{
|
|
|
|
nixos-config,
|
2024-11-03 11:47:17 +00:00
|
|
|
nixpkgs,
|
2024-10-29 12:29:05 +00:00
|
|
|
...
|
2024-11-09 14:02:26 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-10-29 14:03:27 +00:00
|
|
|
networking.hostName = "not522";
|
2024-10-29 12:29:05 +00:00
|
|
|
imports = [
|
|
|
|
"${nixos-config}/config"
|
|
|
|
./disko.nix
|
|
|
|
./hardware.nix
|
2024-10-29 12:44:27 +00:00
|
|
|
./cross-packages.nix
|
2024-11-03 11:47:17 +00:00
|
|
|
"${nixpkgs}/nixos/modules/profiles/minimal.nix"
|
2024-10-29 12:29:05 +00:00
|
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
2024-10-30 08:06:52 +00:00
|
|
|
nixpkgs.config.allowUnsupportedSystem = true;
|
2024-11-12 08:08:28 +00:00
|
|
|
nix.settings.system-features = [
|
|
|
|
"native-riscv"
|
|
|
|
"big-parallel"
|
|
|
|
];
|
2024-10-29 12:29:05 +00:00
|
|
|
}
|