feat: add cachix stuffs
This commit is contained in:
parent
13279974d4
commit
9ea9ea6ff2
3 changed files with 17 additions and 1 deletions
13
common/cachix.nix
Normal file
13
common/cachix.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
nix = {
|
||||
settings = {
|
||||
substituters = [
|
||||
"https://cache.nixos.org"
|
||||
"https://ashhhleyyy.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"ashhhleyyy.cachix.org-1:s38C2TcMTtjaNv9uDwG918ehi0L2Uxw0OlGXPiWRchg="
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +1,7 @@
|
|||
{ pkgs, ... }: rec {
|
||||
imports = [ ];
|
||||
imports = [
|
||||
./cachix.nix
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
|
|
|
@ -7,5 +7,6 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
wget
|
||||
cachix
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue