mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 12:16:32 +03:00
14 lines
285 B
Nix
14 lines
285 B
Nix
# https://github.com/fufexan/nix-gaming
|
|
{ inputs, ... }@flakeContext:
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
nix.settings = {
|
|
substituters = [ "https://nix-gaming.cachix.org" ];
|
|
trusted-public-keys = [ "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" ];
|
|
};
|
|
}
|