Skip to content

Commit

Permalink
fix: Circumvent ignoring of the substituters settings
Browse files Browse the repository at this point in the history
  • Loading branch information
cheriimoya committed Jul 25, 2023
1 parent 9e1e140 commit 4bc81bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
"hdf5-1.10.9" # We need this for code aster
];
};
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=" ];
};
home-manager.users.precice = { pkgs, ... }: {
home.stateVersion = "22.11";
home.file = {
Expand Down

0 comments on commit 4bc81bb

Please sign in to comment.