1e2e2bdd35
grep -- '- &' .sops.yaml | cut -d'&' -f2 | grep _host | sed 's/_host//' | xargs -n2 clan secrets machines add for i in secrets/*.yaml; do host=$(basename $i .yaml); clan secrets import-sops $i --machine $host --user makefu --prefix ${host}-;done for i in secrets/*.yaml; do host=$(basename $i .yaml) ;clan secrets groups add-machine common "$host";done
16 lines
455 B
Nix
16 lines
455 B
Nix
{ fetchFromGitLab, buildLinux, ... } @ args:
|
|
buildLinux (args // rec {
|
|
version = "4.4.55";
|
|
modDirVersion = "4.4.55";
|
|
extraMeta.branch = "4.4";
|
|
defconfig = "firefly_linux_defconfig";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "TeeFirefly";
|
|
repo = "linux-kernel";
|
|
rev = "firefly_0821_release";
|
|
sha256 = "1fwj9cm5ysz286znrr3fyrhfn903m84i7py4rv3y3h9avxb3zl1r";
|
|
};
|
|
extraMeta.platforms = [ "aarch64-linux" ];
|
|
} // (args.argsOverride or {}))
|