Files
nixos/modules/common/common.nix
Michael Thomson 26ea1efd54 hyprland cache
2026-02-17 10:04:30 -05:00

33 lines
687 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"
"https://hyprland.cachix.org"
];
trusted-substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://hyprland.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
};
}