cache yazi on wsl

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-07-16 09:37:35 +00:00
parent 1ee84d5dd8
commit f3b953e87b

View File

@@ -18,5 +18,18 @@
defaultUser = hyper.user; defaultUser = hyper.user;
enable = true; enable = true;
}; };
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
substitute = true;
substituters = [
"https://yazi.cachix.org"
];
trusted-public-keys = [
"yazi.cachix.org-1:Dcdz63NZKfvUCbDGngQDAZq6kOroIrFoyO064uvLh8k="
];
};
};
nixpkgs.hostPlatform = hyper.system;
} }