[Nix] Attempts to allow unfree packages

This commit is contained in:
2025-02-11 21:31:24 -08:00
parent 7c77936ae9
commit 77a9c37df7
4 changed files with 25 additions and 7 deletions

View File

@@ -7,4 +7,9 @@
# Enable flakes and nix-commnands.
nix.settings.experimental-features = ["flakes" "nix-command"];
# Allow unfree code
nixpkgs.config = {
allowUnfree = true;
};
}