diff options
author | sefidel <contact@sefidel.net> | 2022-11-01 20:19:46 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-11-01 20:19:46 +0900 |
commit | a26c3494d545e247ce3f602245acec55080a399d (patch) | |
tree | 63092d5e6158e4a5f9acc9eaa5ebe43c74c8f32f /nixos/modules | |
parent | fcf9efa0fddddf7a268ab32d08d69e9eefebc7f8 (diff) | |
download | nixrc-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.nix | 1 | ||||
-rw-r--r-- | nixos/modules/ec2.nix | 9 |
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; -} |