2024-10-29 12:29:05 +00:00
|
|
|
{
|
|
|
|
nixos-config,
|
|
|
|
nixos-hardware,
|
|
|
|
...
|
|
|
|
}: {
|
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-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-01 07:39:59 +00:00
|
|
|
boot.initrd.timesync.enable = true;
|
2024-10-29 12:29:05 +00:00
|
|
|
}
|