about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-11-01 20:19:46 +0900
committersefidel <contact@sefidel.net>2022-11-01 20:19:46 +0900
commita26c3494d545e247ce3f602245acec55080a399d (patch)
tree63092d5e6158e4a5f9acc9eaa5ebe43c74c8f32f /nixos/modules
parentfcf9efa0fddddf7a268ab32d08d69e9eefebc7f8 (diff)
downloadnixrc-a26c3494d545e247ce3f602245acec55080a399d.tar.gz
nixrc-a26c3494d545e247ce3f602245acec55080a399d.zip
Revert "feat(nixos/selenium): ec2 instance"
This reverts commit b94266070837495fa3b5bd7f5ffa968a9adb6c06.

* moved to ~zachel/nixrc-server
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/default.nix1
-rw-r--r--nixos/modules/ec2.nix9
2 files changed, 0 insertions, 10 deletions
diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix
index c5d40e2..4469650 100644
--- a/nixos/modules/default.nix
+++ b/nixos/modules/default.nix
@@ -3,5 +3,4 @@
   flake = import ./flake.nix;
   nix = import ./nix.nix;
   security = import ./security.nix;
-  ec2 = import ./ec2.nix;
 }
diff --git a/nixos/modules/ec2.nix b/nixos/modules/ec2.nix
deleted file mode 100644
index 45f3cd8..0000000
--- a/nixos/modules/ec2.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ modulesPath, config, lib, ... }:
-
-{
-  # AWS EC2-specific tweaks
-  imports = [
-    "${modulesPath}/virtualisation/amazon-image.nix"
-  ];
-  ec2.hvm = true;
-}