From eb1995e3cd8bd954fecbcb662f359c49a209adcf Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Sun, 20 Jul 2025 10:22:41 -0400 Subject: [PATCH] remove some machines until fully implemented --- home/crow/Bulwark.nix | 8 ----- hosts/nixos/Bulwark/default.nix | 49 ---------------------------- hosts/nixos/Infiltrator/default.nix | 50 ----------------------------- 3 files changed, 107 deletions(-) delete mode 100644 home/crow/Bulwark.nix delete mode 100644 hosts/nixos/Bulwark/default.nix delete mode 100644 hosts/nixos/Infiltrator/default.nix diff --git a/home/crow/Bulwark.nix b/home/crow/Bulwark.nix deleted file mode 100644 index 0bda51d..0000000 --- a/home/crow/Bulwark.nix +++ /dev/null @@ -1,8 +0,0 @@ -{...}: { - imports = [ - common/core - common/optional/desktops/niri.nix - common/optional/desktops/sway - common/optional/browsers/firefox.nix - ]; -} diff --git a/hosts/nixos/Bulwark/default.nix b/hosts/nixos/Bulwark/default.nix deleted file mode 100644 index 97b1c1a..0000000 --- a/hosts/nixos/Bulwark/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -################################## -# # -# Bulwark - Forensincs and RE VM # -# # -################################## -{ - inputs, - lib, - pkgs, - ... -}: { - imports = lib.flatten [ - # Disks - inputs.disko.nixosModules.disko - (lib.custom.relativeToRoot "hosts/common/disks/btrfs-disk.nix") - { - _module.args = { - disk = "/dev/vda"; - withSwap = false; - }; - } - - # Misc - - (map lib.custom.relativeToRoot [ - # Required configs - "hosts/common/core" - - # Optional configs - ]) - ]; - - hostSpec = { - hostName = "bulwark"; - }; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - - networking = { - networkmanager.enable = true; - enableIPv6 = false; - }; - - boot.loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; - timeout = 3; - }; -} diff --git a/hosts/nixos/Infiltrator/default.nix b/hosts/nixos/Infiltrator/default.nix deleted file mode 100644 index 3c71f09..0000000 --- a/hosts/nixos/Infiltrator/default.nix +++ /dev/null @@ -1,50 +0,0 @@ -############################ -# # -# Infiltrator - Redteam VM # -# # -############################ -{ - inputs, - lib, - pkgs, - ... -}: { - imports = lib.flatten [ - # Disks - inputs.disko.nixosModules.disko - (lib.custom.relativeToRoot "hosts/common/disks/btrfs-disk.nix") - { - _module.args = { - disk = "/dev/vda"; - withSwap = false; - }; - } - - # Misc - - (map lib.custom.relativeToRoot [ - # Required configs - "hosts/common/core" - - # Optional configs - "hosts/common/optional/pentesting.nix" - ]) - ]; - - hostSpec = { - hostName = "infiltrator"; - }; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - - networking = { - networkmanager.enable = true; - enableIPv6 = false; - }; - - boot.loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; - timeout = 3; - }; -}