Delete ledstripes

This commit is contained in:
Sandro - 2022-06-13 20:15:20 +02:00
parent d114b91070
commit 849980e057
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 0 additions and 40 deletions

View File

@ -34,8 +34,6 @@
ip6 = "2a00:8180:2c00:282:460:7cff:fe28:76b2";
};
ledstripes.publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHRwhszG9T8ZWuSRkAupCPi7YDQBdaX0YzoQSsvCSpzC";
mucbot = {
ip4 = "172.20.73.27";
ip6 = "2a00:8180:2c00:282:28db:dff:fe6b:e89a";

View File

@ -1,38 +0,0 @@
{ config, pkgs, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/profiles/minimal.nix")
../../../config
../../../config/lxc-container.nix
../../../config/shared.nix
];
c3d2 = {
isInHq = true;
hq.interface = "eth0";
};
networking.hostName = "ledstripes";
networking.useNetworkd = true;
# Required for krops
services.openssh.enable = true;
systemd.services.ledball =
let pile = import ../../../config/pkgs/pile.nix { inherit pkgs; };
in {
after = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "${pile.ledball}/bin/rows";
Restart = "always";
};
};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
system.stateVersion = "20.03"; # Did you read the comment?
}