chore: update topology information

This commit is contained in:
Leon Schwarzäugl 2025-12-19 17:42:04 +01:00 committed by Leon Schwarzäugl
parent 517017f0d6
commit 74840b834b
15 changed files with 137 additions and 92 deletions

View file

@ -5,6 +5,7 @@
./disk-config.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
node.lockFromBootstrapping = lib.mkForce false;

View file

@ -5,6 +5,7 @@
./disk-config.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
topology.self = {

View file

@ -8,18 +8,9 @@ in
./disk-config.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
topology.self = {
icon = "devices.cloud-server";
interfaces.wg = {
addresses = [ "192.168.3.4" ];
renderer.hidePhysicalConnections = true;
virtual = true;
type = "wireguard";
};
};
system.stateVersion = "23.11";
services.syncthing = {

View file

@ -5,6 +5,7 @@
./disk-config.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
topology.self = {

View file

@ -16,6 +16,11 @@ in
];
topology.self.interfaces = {
"eth1" = { };
"wifi" = { };
};
swarselsystems = {
isLaptop = true;
isNixos = true;

View file

@ -5,6 +5,7 @@
./disk-config.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
topology.self = {

View file

@ -8,6 +8,17 @@
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
];
topology.self = {
interfaces = {
"eth1" = { };
"eth2" = { };
"eth3" = { };
"eth4" = { };
"eth5" = { };
"eth6" = { };
};
};
swarselsystems = {
info = "HUNSN RM02, 8GB RAM";
flakePath = "/root/.dotfiles";

View file

@ -16,6 +16,8 @@ in
WLR_RENDERER_ALLOW_SOFTWARE = 1;
};
topology.self.interfaces."demo host" = { };
services.qemuGuest.enable = true;
boot = {

View file

@ -21,6 +21,14 @@ in
];
topology.self = {
interfaces = {
"eth1" = { };
"wifi" = { };
"fritz-wg" = { };
};
};
swarselsystems = {
lowResolution = "1280x800";
highResolution = "2560x1600";

View file

@ -8,6 +8,13 @@
"${self}/modules/nixos/optional/microvm-host.nix"
];
topology.self = {
interfaces = {
"eth1" = { };
"eth2" = { };
};
};
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;

View file

@ -6,6 +6,8 @@
./hardware-configuration.nix
];
topology.self.interfaces."bootstrapper" = { };
networking = {
hostName = "toto";
firewall.enable = false;

View file

@ -5,8 +5,11 @@
./hardware-configuration.nix
"${self}/modules/nixos/optional/systemd-networkd-server.nix"
"${self}/modules/nixos/optional/nix-topology-self.nix"
];
topology.self.interfaces."eth1" = { };
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;