nixos-config/machine/not522/default.nix

22 lines
395 B
Nix
Raw Normal View History

2024-10-29 12:29:05 +00:00
{
nixos-config,
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
./cross-packages.nix
"${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
}