mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
50 lines
1 KiB
Nix
50 lines
1 KiB
Nix
{
|
|
channels,
|
|
config,
|
|
...
|
|
}: {
|
|
nixpkgs.args = {
|
|
localSystem = "x86_64-linux";
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
ci = {
|
|
version = "v0.7";
|
|
gh-actions = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
nix.config.max-silent-time = 60 * 60;
|
|
/*
|
|
nix.config = {
|
|
extra-platforms = ["aarch64-linux" "armv6l-linux" "armv7l-linux"];
|
|
#extra-sandbox-paths = with channels.cipkgs; map (package: builtins.unsafeDiscardStringContext "${package}?") [bash qemu "/run/binfmt"];
|
|
};
|
|
*/
|
|
|
|
channels = {
|
|
nixfiles.path = ../.;
|
|
std.path = "${channels.nixfiles.inputs.std}";
|
|
nixpkgs.path = "${channels.nixfiles.inputs.nixpkgs}";
|
|
};
|
|
|
|
ci.gh-actions.checkoutOptions = {
|
|
submodules = false;
|
|
};
|
|
|
|
cache.cachix = {
|
|
arc = {
|
|
enable = true;
|
|
publicKey = "arc.cachix.org-1:DZmhclLkB6UO0rc0rBzNpwFbbaeLfyn+fYccuAy7YVY=";
|
|
signingKey = null;
|
|
};
|
|
kittywitch = {
|
|
enable = true;
|
|
publicKey = "kittywitch.cachix.org-1:KIzX/G5cuPw5WgrXad6UnrRZ8UDr7jhXzRTK/lmqyK0=";
|
|
signingKey = "mewp";
|
|
};
|
|
};
|
|
}
|