From 9170bd6d9cc6b91f9ab8aec9e6689cb30e3bf3f9 Mon Sep 17 00:00:00 2001
From: Kjetil Orbekk <kjetil.orbekk@gmail.com>
Date: Sat, 20 May 2017 17:31:32 -0400
Subject: raigh: Add new machine

---
 machines/container-raigh.nix  | 23 +++++++++++++++++++++++
 machines/container-zohofi.nix | 22 ----------------------
 2 files changed, 23 insertions(+), 22 deletions(-)
 create mode 100644 machines/container-raigh.nix
 delete mode 100644 machines/container-zohofi.nix

(limited to 'machines')

diff --git a/machines/container-raigh.nix b/machines/container-raigh.nix
new file mode 100644
index 0000000..d502b8d
--- /dev/null
+++ b/machines/container-raigh.nix
@@ -0,0 +1,23 @@
+# 2001:67c:29f4:1008:216:3eff:fe71:9d40
+{ config, lib, pkgs, ... }:
+{
+  imports = [
+    ../config/container.nix
+    ../config/common.nix
+    ../config/users.nix
+  ];
+
+  networking = {
+    hostName = lib.mkForce "raigh";
+  };
+
+  users.defaultUserShell = lib.mkForce pkgs.bash;
+
+  users.extraUsers.trygve = {
+    uid = 1100;
+    home = "/home/trygve";
+    description = "Trygve";
+    extraGroups = [ ];
+    openssh.authorizedKeys.keyFiles = [ ../data/trygve_rsa.pub ];
+  };
+}
diff --git a/machines/container-zohofi.nix b/machines/container-zohofi.nix
deleted file mode 100644
index e2c923d..0000000
--- a/machines/container-zohofi.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ config, lib, pkgs, ... }:
-{
-  imports = [
-    ../config/container.nix
-    ../config/common.nix
-    ../config/users.nix
-  ];
-
-  networking = {
-    hostName = lib.mkForce "shape";
-  };
-
-  users.defaultUserShell = lib.mkForce pkgs.bash;
-
-  users.extraUsers.trygve = {
-    uid = 1100;
-    home = "/home/trygve";
-    description = "Trygve";
-    extraGroups = [ ];
-    openssh.authorizedKeys.keyFiles = [ ../data/trygve_rsa.pub ];
-  };
-}
-- 
cgit v1.2.3