pin nixpkgs in NIX_PATH and registry

This commit is contained in:
Adithya 2023-05-28 22:41:04 +05:30
parent 0779ede609
commit fce6a2b40e
Signed by: adtya
GPG key ID: 48FC9915FFD326D0

View file

@ -1,15 +1,20 @@
{...}: {
nix.settings = {
trusted-substituters = [
"https://nix-community.cachix.org/"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes" "auto-allocate-uids" "cgroups" "ca-derivations"];
auto-allocate-uids = true;
use-cgroups = true;
{nixpkgs, ...}: {
environment.etc."nix/inputs/nixpkgs".source = nixpkgs.outPath;
nix = {
nixPath = ["nixpkgs=/etc/nix/inputs/nixpkgs"];
registry.nixpkgs.flake = nixpkgs;
settings = {
trusted-substituters = [
"https://nix-community.cachix.org/"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes" "auto-allocate-uids" "cgroups" "ca-derivations"];
auto-allocate-uids = true;
use-cgroups = true;
};
};
nixpkgs.config.allowUnfree = true;
}