about summary refs log tree commit diff
path: root/machines/adax/configuration.nix
diff options
context:
space:
mode:
authorPatryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou>2024-09-29 16:23:16 +0200
committerPatryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou>2024-09-29 16:23:16 +0200
commit4f591cc9c9663c413e8eb5cd8401a34a3251e30c (patch)
treedc46f698af4d5ba288e9e6707c2bc960e913bdd8 /machines/adax/configuration.nix
parent4fa1a6efad786affb0729603de846d2034580db2 (diff)
downloaddots-4f591cc9c9663c413e8eb5cd8401a34a3251e30c.tar.gz
dots-4f591cc9c9663c413e8eb5cd8401a34a3251e30c.zip
Remove old machines
Diffstat (limited to 'machines/adax/configuration.nix')
-rwxr-xr-xmachines/adax/configuration.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/machines/adax/configuration.nix b/machines/adax/configuration.nix
deleted file mode 100755
index 388fa60..0000000
--- a/machines/adax/configuration.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, pkgs, ... }:
-
-{
-
-  imports = [
-    ../base.nix
-    ../pl.nix
-    #../../modules/larbs.nix
-  ];
-
-
-  networking.hostName = "adax";
-
-  environment.systemPackages = with pkgs; [
-  ];
-
-  # https://sgt.hootr.club/molten-matter/nix-distributed-builds/
-  boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
-  services.openssh.enable = true;
-  nix.trustedUsers = [ "bob" ];
-  users.users.bob = {
-    description = "Bob the Builder";
-    isNormalUser = true;
-    createHome = true;
-    shell = "/bin/sh";
-  };
-
-}