19 lines
451 B
Nix
19 lines
451 B
Nix
{
|
|
system.stateVersion = "24.11";
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
nix.settings = {
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
"pipe-operators"
|
|
];
|
|
|
|
trusted-users = [ "@wheel" ];
|
|
|
|
# Add binary caches to avoid having to compile them
|
|
substituters = [ "https://nix-community.cachix.org" ];
|
|
trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
|
|
};
|
|
}
|