20 lines
370 B
Nix
20 lines
370 B
Nix
{
|
|
nixos-config,
|
|
nixpkgs,
|
|
...
|
|
}:
|
|
{
|
|
networking.hostName = "not522";
|
|
imports = [
|
|
"${nixos-config}/config"
|
|
./disko.nix
|
|
./hardware.nix
|
|
"${nixpkgs}/nixos/modules/profiles/minimal.nix"
|
|
];
|
|
system.stateVersion = "24.11";
|
|
nixpkgs.config.allowUnsupportedSystem = true;
|
|
nix.settings.system-features = [
|
|
"native-riscv"
|
|
"big-parallel"
|
|
];
|
|
}
|