aboutsummaryrefslogtreecommitdiff
path: root/nixos/selenium
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/selenium')
-rw-r--r--nixos/selenium/configuration.nix18
-rw-r--r--nixos/selenium/hardware-configuration.nix5
2 files changed, 0 insertions, 23 deletions
diff --git a/nixos/selenium/configuration.nix b/nixos/selenium/configuration.nix
deleted file mode 100644
index e099f02..0000000
--- a/nixos/selenium/configuration.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{
- imports = [ ];
-
- users.users.worker = {
- isNormalUser = true;
- extraGroups = [ "wheel" ];
- openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAic4niJKrBKyTzTbpldaEiU30vS9/jkZl3yZRnu6d9O zach@zachel.io" ];
- };
-
- # This value determines the NixOS release with which your system is to be
- # compatible, in order to avoid breaking some software such as database
- # servers. You should change this only after NixOS release notes say you
- # should.
- system.stateVersion = "22.05"; # Did you read the comment?
-
-}
diff --git a/nixos/selenium/hardware-configuration.nix b/nixos/selenium/hardware-configuration.nix
deleted file mode 100644
index 0b508ec..0000000
--- a/nixos/selenium/hardware-configuration.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- nix.settings.max-jobs = lib.mkDefault 4;
-}