feat: set up cache
This commit is contained in:
parent
4c899bbfc6
commit
56cc86052f
6 changed files with 51 additions and 8 deletions
|
|
@ -1,17 +1,24 @@
|
|||
{ pkgs, lib, ...}: {
|
||||
# todo: gc
|
||||
# todo: cache
|
||||
environment.systemPackages = with pkgs; [
|
||||
nh
|
||||
];
|
||||
|
||||
lib.debug.traceVal = pkgs.nh;
|
||||
nix.settings = {
|
||||
experimental-features = [
|
||||
"flakes"
|
||||
"nix-command"
|
||||
"pipe-operators"
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [
|
||||
"flakes"
|
||||
"nix-command"
|
||||
"pipe-operators"
|
||||
];
|
||||
extra-substituters = [
|
||||
"https://cache.thegeneralist01.com/"
|
||||
];
|
||||
|
||||
extra-trusted-public-keys = [
|
||||
"etc.thegeneralist01.com:BIhIf7HJ5xjFX+2e0WrGDQ4LdHeEEyQrtWBB1li2Ve8="
|
||||
];
|
||||
};
|
||||
|
||||
home-manager.sharedModules = [{
|
||||
programs.nh = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue