first commit

This commit is contained in:
Alexander Lampalzer 2025-05-29 09:29:43 +02:00
commit f9cc68899b
Signed by: alexander.lampalzer
GPG key ID: 20879CCACD5CD670
7 changed files with 228 additions and 0 deletions

15
modules/system.nix Normal file
View file

@ -0,0 +1,15 @@
{ 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;
}