Compare commits

..

2 commits

Author SHA1 Message Date
57cc4eef4a
Add garnix build config. 2024-04-04 14:18:02 -05:00
cb74116f7c
Add garnix cache. 2024-04-04 14:17:51 -05:00
2 changed files with 14 additions and 2 deletions

8
garnix.yaml Normal file
View file

@ -0,0 +1,8 @@
---
# Config for garnix.io builds & caching
builds:
include:
- homeConfigurations.*
- nixosConfigurations.*
- packages.x86_64-linux.*
- packages.aarch64-linux.*

View file

@ -20,8 +20,12 @@
options = [ "x-systemd.automount" "noauto" ];
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.trusted-users = [ "root" "jahanson" ];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
trusted-users = [ "root" "jahanson" ];
extra-substituters = "https://cache.garnix.io";
extra-trusted-public-keys = "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=";
};
# Enable fish
programs.fish.enable = true;