rpi-nixos-template/modules/system.nix
2025-05-29 09:29:43 +02:00

15 lines
408 B
Nix

{ lib, ... }:
{
system.stateVersion = "25.05";
nix.settings.trusted-substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
];
nix.settings.trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
hardware.enableAllHardware = lib.mkForce false;
}