summaryrefslogtreecommitdiff
path: root/machines/container-zohofi.nix
blob: e2c923d72da20d744a81519b5c2913e39e178a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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 ];
  };
}