2024-12-16 12:55:24 +00:00
|
|
|
{ x, pkgs, ... }:
|
2024-12-17 12:10:05 +00:00
|
|
|
with x;
|
|
|
|
{
|
2024-12-03 14:20:37 +00:00
|
|
|
nix = {
|
|
|
|
package = pkgs.nix;
|
|
|
|
settings = {
|
|
|
|
warn-dirty = false;
|
2024-12-17 12:10:05 +00:00
|
|
|
extra-experimental-features = [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
2024-12-03 14:20:37 +00:00
|
|
|
builders-use-substitutes = true;
|
|
|
|
auto-optimise-store = true;
|
|
|
|
extra-substituters = [
|
|
|
|
"https://nix-gaming.cachix.org" # NIX GAMING
|
|
|
|
"https://hyprland.cachix.org" # HYPRLAND
|
|
|
|
];
|
|
|
|
extra-trusted-public-keys = [
|
|
|
|
"nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" # NIX GAMING
|
|
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" # HYPRLAND
|
|
|
|
];
|
2024-12-17 12:10:05 +00:00
|
|
|
trusted-users = [
|
|
|
|
"${userName}"
|
|
|
|
"@wheel"
|
|
|
|
];
|
2024-11-21 09:24:15 +00:00
|
|
|
};
|
|
|
|
};
|
2024-12-03 14:20:37 +00:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
news.display = "silent";
|
|
|
|
manual = {
|
|
|
|
manpages = False;
|
|
|
|
json = False;
|
|
|
|
html = False;
|
|
|
|
};
|
2024-11-21 09:24:15 +00:00
|
|
|
}
|