first commit
This commit is contained in:
commit
f9cc68899b
7 changed files with 228 additions and 0 deletions
15
modules/system.nix
Normal file
15
modules/system.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue