'toString inputs' -> 'inputs'
This commit is contained in:
parent
b54704e0e3
commit
a06d843d5c
7 changed files with 10 additions and 10 deletions
hosts/build02
modules
|
@ -3,7 +3,7 @@
|
|||
# 100GB storagebox is attached to the build02 server
|
||||
|
||||
age.secrets.hetzner-borgbackup-ssh = {
|
||||
file = "${toString inputs.self}/secrets/hetzner-borgbackup-ssh.age";
|
||||
file = "${inputs.self}/secrets/hetzner-borgbackup-ssh.age";
|
||||
};
|
||||
|
||||
systemd.services.borgbackup-job-nixpkgs-update = {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
userLib = import "${toString inputs.self}/users/lib.nix" { inherit lib; };
|
||||
userLib = import "${inputs.self}/users/lib.nix" { inherit lib; };
|
||||
|
||||
nixpkgs-update-bin = "/var/lib/nixpkgs-update/bin/nixpkgs-update";
|
||||
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
{ config, inputs, ... }:
|
||||
{
|
||||
age.secrets.hercules-binary-caches = {
|
||||
file = "${toString inputs.self}/secrets/hercules-binary-caches.age";
|
||||
file = "${inputs.self}/secrets/hercules-binary-caches.age";
|
||||
mode = "600";
|
||||
owner = "_hercules-ci-agent";
|
||||
group = "_hercules-ci-agent";
|
||||
};
|
||||
|
||||
age.secrets.hercules-cluster-join-token = {
|
||||
file = "${toString inputs.self}/secrets/hercules-cluster-join-token.age";
|
||||
file = "${inputs.self}/secrets/hercules-cluster-join-token.age";
|
||||
mode = "600";
|
||||
owner = "_hercules-ci-agent";
|
||||
group = "_hercules-ci-agent";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
defaultSopsPath = "${toString inputs.self}/hosts/${config.networking.hostName}/secrets.yaml";
|
||||
defaultSopsPath = "${inputs.self}/hosts/${config.networking.hostName}/secrets.yaml";
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ inputs, lib, ... }:
|
||||
|
||||
let
|
||||
usersDir = "${toString inputs.self}/users";
|
||||
usersDir = "${inputs.self}/users";
|
||||
userImports =
|
||||
let
|
||||
toUserPath = f: usersDir + "/${f}";
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
};
|
||||
|
||||
age.secrets.hetzner-borgbackup-ssh = {
|
||||
file = "${toString inputs.self}/secrets/hetzner-borgbackup-ssh.age";
|
||||
file = "${inputs.self}/secrets/hetzner-borgbackup-ssh.age";
|
||||
};
|
||||
|
||||
systemd.services.borgbackup-job-github-org = {
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
{ config, inputs, ... }:
|
||||
{
|
||||
age.secrets.hercules-binary-caches = {
|
||||
file = "${toString inputs.self}/secrets/hercules-binary-caches.age";
|
||||
file = "${inputs.self}/secrets/hercules-binary-caches.age";
|
||||
owner = "hercules-ci-agent";
|
||||
};
|
||||
|
||||
age.secrets.hercules-cluster-join-token = {
|
||||
file = "${toString inputs.self}/secrets/hercules-cluster-join-token.age";
|
||||
file = "${inputs.self}/secrets/hercules-cluster-join-token.age";
|
||||
owner = "hercules-ci-agent";
|
||||
};
|
||||
|
||||
age.secrets.hercules-secrets = {
|
||||
file = "${toString inputs.self}/secrets/hercules-secrets.age";
|
||||
file = "${inputs.self}/secrets/hercules-secrets.age";
|
||||
owner = "hercules-ci-agent";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue