diff --git a/machines/krz01/_configuration.nix b/machines/krz01/_configuration.nix index 2323df4..c65ad99 100644 --- a/machines/krz01/_configuration.nix +++ b/machines/krz01/_configuration.nix @@ -7,9 +7,6 @@ lib.extra.mkConfig { enabledServices = [ # INFO: This list needs to stay sorted alphabetically - # Machine learning API machine - # "microvm-ml01" - # "microvm-router01" "nvidia-tesla-k80" "ollama" "whisper" diff --git a/machines/krz01/microvm-ml01.nix b/machines/krz01/microvm-ml01.nix deleted file mode 100644 index b0a8be8..0000000 --- a/machines/krz01/microvm-ml01.nix +++ /dev/null @@ -1,22 +0,0 @@ -_: { - microvm.autostart = [ "ml01" ]; - microvm.vms.ml01 = { - config = { - networking.hostName = "ml01"; - microvm = { - hypervisor = "cloud-hypervisor"; - vcpu = 4; - mem = 4096; - balloonMem = 2048; - shares = [ - { - source = "/nix/store"; - mountPoint = "/nix/.ro-store"; - tag = "ro-store"; - proto = "virtiofs"; - } - ]; - }; - }; - }; -} diff --git a/machines/krz01/microvm-router01.nix b/machines/krz01/microvm-router01.nix deleted file mode 100644 index 9af9bdf..0000000 --- a/machines/krz01/microvm-router01.nix +++ /dev/null @@ -1,16 +0,0 @@ -_: { - microvm.autostart = [ "router01" ]; - microvm.vms.router01 = { - config = { - networking.hostName = "router01"; - microvm.shares = [ - { - source = "/nix/store"; - mountPoint = "/nix/.ro-store"; - tag = "ro-store"; - proto = "virtiofs"; - } - ]; - }; - }; -}