diff options
Diffstat (limited to 'machines/container-zohofi.nix')
-rw-r--r-- | machines/container-zohofi.nix | 22 |
1 files changed, 0 insertions, 22 deletions
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 ]; - }; -} |