From 3dac11f8d9e918c935ac98abdd0d7bbd4d21053b Mon Sep 17 00:00:00 2001 From: smayzy Date: Sat, 28 Feb 2026 16:03:08 +0100 Subject: [PATCH] remove vm --- flake.nix | 2 -- hosts/ctf-vm1/configuration.nix | 24 ------------------------ hosts/ctf-vm1/home.nix | 7 ------- 3 files changed, 33 deletions(-) delete mode 100644 hosts/ctf-vm1/configuration.nix delete mode 100644 hosts/ctf-vm1/home.nix diff --git a/flake.nix b/flake.nix index f28728a..d1f70b3 100644 --- a/flake.nix +++ b/flake.nix @@ -52,8 +52,6 @@ desktop1 = mkHost ./hosts/desktop1/configuration.nix; server1 = mkHost ./hosts/server1/configuration.nix; laptop1 = mkHost ./hosts/laptop1/configuration.nix; - ctf-vm1 = mkHost ./hosts/ctf-vm1/configuration.nix; - }; }; diff --git a/hosts/ctf-vm1/configuration.nix b/hosts/ctf-vm1/configuration.nix deleted file mode 100644 index 25ea533..0000000 --- a/hosts/ctf-vm1/configuration.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ inputs, config, ... }: - -{ - imports = [ - ../common/common.nix - ./hardware-configuration.nix - ]; - - networking.hostName = "ctf-vm1"; - - smayzy.grub.disable = true; - - home-manager = { - extraSpecialArgs = { - inherit inputs; - smayzy = config.smayzy; - }; - users = { - smayzy = import ./home.nix; - }; - backupFileExtension = "backup"; - }; - -} diff --git a/hosts/ctf-vm1/home.nix b/hosts/ctf-vm1/home.nix deleted file mode 100644 index e328f19..0000000 --- a/hosts/ctf-vm1/home.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ ... }: - -{ - imports = [ - ../common/home.nix - ]; -}