This commit is contained in:
Michael Thomson
2026-02-17 10:01:22 -05:00
parent e7d0282ec8
commit 8cbc0e30a8
11 changed files with 110 additions and 157 deletions

24
modules/common/common.nix Normal file
View File

@@ -0,0 +1,24 @@
{
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="
];
};
}