add garnix cache for later
This commit is contained in:
parent
0008477439
commit
28d5a0a0f9
1 changed files with 11 additions and 2 deletions
13
default.nix
13
default.nix
|
@ -24,8 +24,17 @@
|
|||
outputs.nixosModules.security
|
||||
];
|
||||
|
||||
# flakes
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
# nix settings that should 100% be global
|
||||
#nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
nix.settings = {
|
||||
experimental-features = ["nix-command" "flakes"];
|
||||
substituters = [
|
||||
"https://cache.garnix.io"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
|
||||
];
|
||||
};
|
||||
|
||||
# import the overlays
|
||||
nixpkgs = {
|
||||
|
|
Loading…
Reference in a new issue