remove some machines until fully implemented

This commit is contained in:
TheWanderingCrow 2025-07-20 10:22:41 -04:00
parent b6adef3061
commit eb1995e3cd
3 changed files with 0 additions and 107 deletions

View file

@ -1,8 +0,0 @@
{...}: {
imports = [
common/core
common/optional/desktops/niri.nix
common/optional/desktops/sway
common/optional/browsers/firefox.nix
];
}

View file

@ -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;
};
}

View file

@ -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;
};
}