Add Garnix support
This commit is contained in:
parent
1d5090762b
commit
7a4a0dafea
2 changed files with 12 additions and 2 deletions
|
@ -40,8 +40,14 @@
|
||||||
nix = {
|
nix = {
|
||||||
# Keep the latest version of Nix.
|
# Keep the latest version of Nix.
|
||||||
package = pkgs.nix;
|
package = pkgs.nix;
|
||||||
# Necessary for using flakes on this system.
|
settings = {
|
||||||
settings.experimental-features = "nix-command flakes";
|
# Necessary for using flakes on this system.
|
||||||
|
experimental-features = "nix-command flakes";
|
||||||
|
|
||||||
|
# Include Garnix
|
||||||
|
extra-substituters = [ "https://cache.garnix.io" ];
|
||||||
|
extra-trusted-public-keys = [ "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Create /etc/zshrc that loads the nix-darwin environment.
|
# Create /etc/zshrc that loads the nix-darwin environment.
|
||||||
|
|
|
@ -27,6 +27,10 @@
|
||||||
experimental-features = [ "flakes" "nix-command" ];
|
experimental-features = [ "flakes" "nix-command" ];
|
||||||
trusted-users = [ "spotlight" ];
|
trusted-users = [ "spotlight" ];
|
||||||
builders-use-substitutes = true;
|
builders-use-substitutes = true;
|
||||||
|
|
||||||
|
# Include Garnix
|
||||||
|
extra-substituters = [ "https://cache.garnix.io" ];
|
||||||
|
extra-trusted-public-keys = [ "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue