25 lines
430 B
Nix
25 lines
430 B
Nix
{
|
|
lib,
|
|
...
|
|
}: {
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
time.timeZone = "America/Toronto";
|
|
|
|
nix.settings = {
|
|
trusted-users = ["mthomson"];
|
|
|
|
experimental-features = ["nix-command" "flakes"];
|
|
|
|
substituters = [
|
|
"https://cache.nixos.org"
|
|
"https://nix-community.cachix.org"
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
};
|
|
|
|
}
|