🔧 add some topology information
This commit is contained in:
parent
229eff0d63
commit
96c388bbac
7 changed files with 34 additions and 10 deletions
|
@ -978,11 +978,11 @@
|
|||
"treefmt-nix": "treefmt-nix_3"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1725067692,
|
||||
"narHash": "sha256-8DX7yCJi25D11TphmNYitSQN75Iqq4LFp7QrEPwkhWY=",
|
||||
"lastModified": 1725121599,
|
||||
"narHash": "sha256-brVoeDiCAPvRZZNv0VoNLZppB7i1G3OLiyDAgw4jDco=",
|
||||
"ref": "main",
|
||||
"rev": "e4f6bc36615dd9c32ed2d007b6bc8a4e8fa2275d",
|
||||
"revCount": 75,
|
||||
"rev": "d1ee55802c05d6398faa4eb136cfdb2db26607d7",
|
||||
"revCount": 76,
|
||||
"type": "git",
|
||||
"url": "ssh://forgejo@git.ingolf-wagner.de/palo/nixos-private-parts.git"
|
||||
},
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
config,
|
||||
factsGenerator,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
|
||||
|
@ -105,7 +106,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
pkgs,
|
||||
config,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -33,7 +34,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "21.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
pkgs,
|
||||
lib,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -23,7 +24,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
clanCore,
|
||||
factsGenerator,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -22,7 +23,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "24.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
pkgs,
|
||||
lib,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -21,7 +22,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "24.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
pkgs,
|
||||
factsGenerator,
|
||||
components,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -84,7 +85,10 @@ in
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ "${components}/monitor/container.nix" ];
|
||||
imports = [
|
||||
"${components}/monitor/container.nix"
|
||||
inputs.nix-topology.nixosModules.default
|
||||
];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
|
|
Loading…
Reference in a new issue