Add sops.nix to every host
This commit is contained in:
parent
408bbe2de2
commit
679f815d60
27 changed files with 91 additions and 21 deletions
|
|
@ -5,5 +5,6 @@
|
||||||
./forgejo.nix
|
./forgejo.nix
|
||||||
./redis.nix
|
./redis.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/forgejo/sops.nix
Normal file
6
config/hosts/forgejo/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/jellyfin/sops.nix
Normal file
6
config/hosts/jellyfin/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,5 +4,6 @@
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./keycloak.nix
|
./keycloak.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/keycloak/sops.nix
Normal file
6
config/hosts/keycloak/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -3,5 +3,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/lifeline/sops.nix
Normal file
6
config/hosts/lifeline/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -3,5 +3,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./simple-nixos-mailserver.nix
|
./simple-nixos-mailserver.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/mail-1/sops.nix
Normal file
6
config/hosts/mail-1/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
./mastodon.nix
|
./mastodon.nix
|
||||||
./opensearch.nix
|
./opensearch.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/mastodon/sops.nix
Normal file
6
config/hosts/mastodon/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
diff --git a/.yarnrc.yml b/.yarnrc.yml
|
|
||||||
--- a/.yarnrc.yml
|
|
||||||
+++ b/.yarnrc.yml
|
|
||||||
@@ -1 +1,6 @@
|
|
||||||
nodeLinker: node-modules
|
|
||||||
+
|
|
||||||
+approvedGitRepositories:
|
|
||||||
+ - "**"
|
|
||||||
+
|
|
||||||
+enableScripts: true
|
|
||||||
diff --git a/yarn.lock b/yarn.lock
|
|
||||||
--- a/yarn.lock
|
|
||||||
+++ b/yarn.lock
|
|
||||||
@@ -2,6 +2,6 @@
|
|
||||||
# Manual changes might be lost - proceed with caution!
|
|
||||||
|
|
||||||
__metadata:
|
|
||||||
- version: 8
|
|
||||||
+ version: 9
|
|
||||||
cacheKey: 10c0
|
|
||||||
|
|
||||||
|
|
@ -8,5 +8,6 @@
|
||||||
./matrix-authentication-service.nix
|
./matrix-authentication-service.nix
|
||||||
./matrix-synapse.nix
|
./matrix-synapse.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/matrix/sops.nix
Normal file
6
config/hosts/matrix/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -6,5 +6,6 @@
|
||||||
./neo4j.nix
|
./neo4j.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/metrics-nekomesh/sops.nix
Normal file
6
config/hosts/metrics-nekomesh/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/metrics/sops.nix
Normal file
6
config/hosts/metrics/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,5 +4,6 @@
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/nextcloud/sops.nix
Normal file
6
config/hosts/nextcloud/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -4,5 +4,6 @@
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./searx.nix
|
./searx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/searx/sops.nix
Normal file
6
config/hosts/searx/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -7,5 +7,6 @@
|
||||||
./radarr.nix
|
./radarr.nix
|
||||||
./sonarr.nix
|
./sonarr.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/torrent/sops.nix
Normal file
6
config/hosts/torrent/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./containers/uptime-kuma
|
./containers/uptime-kuma
|
||||||
./services.nix
|
./services.nix
|
||||||
|
./sops.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
config/hosts/valkyrie/sops.nix
Normal file
6
config/hosts/valkyrie/sops.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sops = {
|
||||||
|
defaultSopsFile = ./secrets.yaml;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue