aboutsummaryrefslogtreecommitdiff
path: root/systems/monitoring-1
diff options
context:
space:
mode:
Diffstat (limited to 'systems/monitoring-1')
-rw-r--r--systems/monitoring-1/base.nix4
-rw-r--r--systems/monitoring-1/flake.lock10
-rw-r--r--systems/monitoring-1/flake.nix4
3 files changed, 9 insertions, 9 deletions
diff --git a/systems/monitoring-1/base.nix b/systems/monitoring-1/base.nix
index 2d8139e..6784ef8 100644
--- a/systems/monitoring-1/base.nix
+++ b/systems/monitoring-1/base.nix
@@ -1,4 +1,4 @@
1{ config, pkgs, lib, nixpkgs, php, secrets, ... }: 1{ config, pkgs, lib, nixpkgs, ports, secrets, ... }:
2{ 2{
3 # ssh-keyscan monitoring-1 | nix-shell -p ssh-to-age --run ssh-to-age 3 # ssh-keyscan monitoring-1 | nix-shell -p ssh-to-age --run ssh-to-age
4 secrets.ageKeys = [ "age1dn4lzhgxusqrpjjnzm7w8ml39ptf326htuzmpqdqs2gg3wq7cqzqxuvx8k" ]; 4 secrets.ageKeys = [ "age1dn4lzhgxusqrpjjnzm7w8ml39ptf326htuzmpqdqs2gg3wq7cqzqxuvx8k" ];
@@ -13,7 +13,7 @@
13 ./status_engine.nix 13 ./status_engine.nix
14 ]; 14 ];
15 15
16 nixpkgs.overlays = builtins.attrValues php.overlays; 16 nixpkgs.overlays = builtins.attrValues ports.overlays;
17 nixpkgs.config.permittedInsecurePackages = [ 17 nixpkgs.config.permittedInsecurePackages = [
18 "python-2.7.18.6" # for nagios-cli 18 "python-2.7.18.6" # for nagios-cli
19 ]; 19 ];
diff --git a/systems/monitoring-1/flake.lock b/systems/monitoring-1/flake.lock
index d4a2c8d..84d51bc 100644
--- a/systems/monitoring-1/flake.lock
+++ b/systems/monitoring-1/flake.lock
@@ -628,7 +628,7 @@
628 "type": "github" 628 "type": "github"
629 } 629 }
630 }, 630 },
631 "php": { 631 "ports": {
632 "inputs": { 632 "inputs": {
633 "flake-utils": "flake-utils_2", 633 "flake-utils": "flake-utils_2",
634 "nixpkgs": "nixpkgs_6", 634 "nixpkgs": "nixpkgs_6",
@@ -636,12 +636,12 @@
636 }, 636 },
637 "locked": { 637 "locked": {
638 "lastModified": 1, 638 "lastModified": 1,
639 "narHash": "sha256-Qs+O86L4sPArYWm7wMCFNKLCWfUwkz8STePsn5K9Xwk=", 639 "narHash": "sha256-MS3rzLJRZ4jW7ASOUUZY1/4jTFfGVkfpedwgnms9c40=",
640 "path": "../../flakes/private/php", 640 "path": "../../flakes/private/ports",
641 "type": "path" 641 "type": "path"
642 }, 642 },
643 "original": { 643 "original": {
644 "path": "../../flakes/private/php", 644 "path": "../../flakes/private/ports",
645 "type": "path" 645 "type": "path"
646 } 646 }
647 }, 647 },
@@ -656,7 +656,7 @@
656 "my-lib": "my-lib", 656 "my-lib": "my-lib",
657 "myuids": "myuids", 657 "myuids": "myuids",
658 "nixpkgs": "nixpkgs_5", 658 "nixpkgs": "nixpkgs_5",
659 "php": "php", 659 "ports": "ports",
660 "secrets": "secrets_3", 660 "secrets": "secrets_3",
661 "system": "system" 661 "system": "system"
662 } 662 }
diff --git a/systems/monitoring-1/flake.nix b/systems/monitoring-1/flake.nix
index e97cb05..1833053 100644
--- a/systems/monitoring-1/flake.nix
+++ b/systems/monitoring-1/flake.nix
@@ -9,7 +9,7 @@
9 chatons.url = "path:../../flakes/private/chatons"; 9 chatons.url = "path:../../flakes/private/chatons";
10 environment.url = "path:../../flakes/private/environment"; 10 environment.url = "path:../../flakes/private/environment";
11 system.url = "path:../../flakes/private/system"; 11 system.url = "path:../../flakes/private/system";
12 php.url = "path:../../flakes/private/php"; 12 ports.url = "path:../../flakes/private/ports";
13 13
14 myuids.url = "path:../../flakes/myuids"; 14 myuids.url = "path:../../flakes/myuids";
15 secrets.url = "path:../../flakes/secrets"; 15 secrets.url = "path:../../flakes/secrets";
@@ -39,7 +39,7 @@
39 moduleArgs = { 39 moduleArgs = {
40 nixpkgs = inputs.nixpkgs; 40 nixpkgs = inputs.nixpkgs;
41 monitoring = inputs.monitoring; 41 monitoring = inputs.monitoring;
42 php = inputs.php; 42 ports = inputs.ports;
43 }; 43 };
44 }; 44 };
45} 45}