mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
20 lines
464 B
Nix
20 lines
464 B
Nix
{username, ...}: {
|
|
nix.settings = {
|
|
trusted-users = [
|
|
"root"
|
|
"@wheel"
|
|
username
|
|
];
|
|
|
|
experimental-features = "nix-command flakes";
|
|
substituters = [
|
|
"https://hyprland.cachix.org"
|
|
"https://nix-community.cachix.org"
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
];
|
|
};
|
|
}
|