28 lines
676 B
Nix
28 lines
676 B
Nix
{ lib, inputs, ... }: {
|
|
nix = rec {
|
|
nixPath = lib.mkForce [ "nixpkgs=/etc/self/compat" ];
|
|
binaryCaches = [ "https://cache.nixos.org" ];
|
|
|
|
registry.self.flake = inputs.self;
|
|
|
|
trustedUsers = [ "root" "balsoft" "@wheel" ];
|
|
|
|
nrBuildUsers = 16;
|
|
|
|
optimise.automatic = true;
|
|
|
|
binaryCachePublicKeys = [
|
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
];
|
|
|
|
package = inputs.nix.packages.x86_64-linux.nix;
|
|
|
|
extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
requireSignedBinaryCaches = true;
|
|
};
|
|
environment.etc.nixpkgs.source = inputs.nixpkgs;
|
|
environment.etc.self.source = inputs.self;
|
|
}
|