1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-05-11 22:49:04 +02:00
parent be9fb9278e
commit b8af0e9761
No known key found for this signature in database
165 changed files with 1815 additions and 1431 deletions

View file

@ -3,16 +3,17 @@
inputs,
lib,
...
}: {
}:
{
nix = {
registry = lib.mapAttrs (_: value: {flake = value;}) inputs;
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
nixPath = lib.mapAttrsToList (key: _: "${key}=flake:${key}") config.nix.registry;
optimise.automatic = true;
settings = {
trusted-users = ["root"] ++ config.users.normalUsers;
trusted-users = [ "root" ] ++ config.users.normalUsers;
experimental-features = [
"nix-command"
"flakes"
@ -24,5 +25,4 @@
};
nixpkgs.config.allowUnfree = true;
hardware.enableAllFirmware = true;
}