configuration.nix/system/nix.nix

14 lines
343 B
Nix
Raw Normal View History

2023-03-25 22:10:09 +05:30
{...}: {
2023-03-15 22:11:59 +05:30
nix.settings = {
substituters = [
"https://nix-community.cachix.org/"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
auto-optimise-store = true;
2023-03-25 22:10:09 +05:30
experimental-features = ["nix-command" "flakes"];
2023-03-15 22:11:59 +05:30
};
nixpkgs.config.allowUnfree = true;
}