Add files via upload

This commit is contained in:
Guilherme Hermando
2025-08-06 00:06:34 -03:00
committed by GitHub
parent 1219494d13
commit 3c5d19c060
18 changed files with 613 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, inputs, pkgs, ... }: {
## Ativar recursos experimentais do Nix, como flakes
nix.settings.experimental-features = ["nix-command" "flakes"];
## chaotic-nix
nix.nixPath = lib.mapAttrsToList (key: _: "${key}=flake:${key}") config.nix.registry;
nix.registry = lib.mapAttrs (_: value: {flake = value;}) (lib.filterAttrs (_: value: lib.isType "flake" value) inputs);
nix.settings.flake-registry = "";
}