diff --git a/host-registry.nix b/host-registry.nix index a4280331..dc28d480 100644 --- a/host-registry.nix +++ b/host-registry.nix @@ -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"; diff --git a/hosts/containers/ledstripes/configuration.nix b/hosts/containers/ledstripes/configuration.nix deleted file mode 100644 index 7bf89e65..00000000 --- a/hosts/containers/ledstripes/configuration.nix +++ /dev/null @@ -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? -}