Add cachix and enable by default
This commit is contained in:
parent
225691d325
commit
46cbf68a5e
23
system/cachix.nix
Normal file
23
system/cachix.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ pkgs, lib, config, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.nixfiles.cachix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.nixfiles.cachix.enable = lib.mkOption {
|
||||||
|
description = "Whether to enable the Cachix derivation cache";
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = true;
|
||||||
|
example = false;
|
||||||
|
};
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
nix.settings = {
|
||||||
|
substituters = [
|
||||||
|
"https://hyprland.cachix.org"
|
||||||
|
];
|
||||||
|
|
||||||
|
trusted-public-keys = [
|
||||||
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -11,6 +11,7 @@ in
|
|||||||
./programs
|
./programs
|
||||||
./sessions
|
./sessions
|
||||||
./testing
|
./testing
|
||||||
|
./cachix.nix
|
||||||
];
|
];
|
||||||
config = {};
|
config = {};
|
||||||
options.nixfiles = {
|
options.nixfiles = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user