diff options
author | sefidel <contact@sefidel.net> | 2023-08-12 18:30:06 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-12 18:40:22 +0900 |
commit | 4bdee7a33fe52990a31c3e91e4a2d6a60e389221 (patch) | |
tree | ac7338752829f324a5ae74198b8c012ba389b28e /nixos/modules/cachix/caches/helix.nix | |
parent | 9af4ff236b03bd94139042aca0e517b7d8ffefcb (diff) | |
download | nixrc-4bdee7a33fe52990a31c3e91e4a2d6a60e389221.tar.gz nixrc-4bdee7a33fe52990a31c3e91e4a2d6a60e389221.zip |
feat(home): add helix as overlay
Diffstat (limited to 'nixos/modules/cachix/caches/helix.nix')
-rw-r--r-- | nixos/modules/cachix/caches/helix.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/modules/cachix/caches/helix.nix b/nixos/modules/cachix/caches/helix.nix new file mode 100644 index 0000000..7783a96 --- /dev/null +++ b/nixos/modules/cachix/caches/helix.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: + +{ + nix.settings = { + substituters = [ + "https://helix.cachix.org" + ]; + trusted-public-keys = [ + "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs=" + ]; + }; +} |