Compare commits
2 commits
4d1eb8cd94
...
57cc4eef4a
Author | SHA1 | Date | |
---|---|---|---|
57cc4eef4a | |||
cb74116f7c |
2 changed files with 14 additions and 2 deletions
8
garnix.yaml
Normal file
8
garnix.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
# Config for garnix.io builds & caching
|
||||
builds:
|
||||
include:
|
||||
- homeConfigurations.*
|
||||
- nixosConfigurations.*
|
||||
- packages.x86_64-linux.*
|
||||
- packages.aarch64-linux.*
|
|
@ -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;
|
||||
|
|
Reference in a new issue