Update deprecated naming

This commit is contained in:
Dave Gallant
2022-02-05 16:09:28 -05:00
parent f12d2c3558
commit 02873df2fa
4 changed files with 27 additions and 27 deletions

View File

@@ -40,14 +40,16 @@
};
nix = {
autoOptimiseStore = true;
binaryCaches = [ "https://davegallant.cachix.org" ];
binaryCachePublicKeys = [
"davegallant.cachix.org-1:SsUMqL4+tF2R3/G6X903E9laLlY1rES2QKFfePegF08="
];
useSandbox = false;
settings = {
auto-optimise-store = true;
sandbox = false;
substituters = [ "https://davegallant.cachix.org" ];
trusted-users = [ "root" "dave" ];
trusted-public-keys = [
"davegallant.cachix.org-1:SsUMqL4+tF2R3/G6X903E9laLlY1rES2QKFfePegF08="
];
};
registry = { nixpkgs.flake = nixpkgs; };
trustedUsers = [ "root" "dave" ];
};
nixpkgs.overlays = [ (import ./modules/overlays) inputs.neovim-nightly-overlay.overlay ];