ROCKPro64-Server/system/default.nix

22 lines
334 B
Nix
Raw Normal View History

2025-02-28 13:32:11 -05:00
{ lib, ... }:
{
imports = [
./accounts
./devices
2025-03-01 17:48:06 -05:00
./modules
./nix
2025-02-28 13:32:11 -05:00
./programs
./secrets
./services
];
2025-03-01 17:48:06 -05:00
networking = {
hostName = "rubble";
hostId = "e0b1fcef";
2025-02-28 13:32:11 -05:00
};
2025-03-01 17:48:06 -05:00
time.timeZone = "America/Toronto";
system.stateVersion = "24.11";
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
2025-02-28 13:32:11 -05:00
}