summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/vbob.nix
blob: b121a730a063fa2695eb37fe1203351f7a0f886f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
#
#
{ lib, config, pkgs, ... }:

{
  krebs.build.host = config.krebs.hosts.vbob;
  krebs.build.target = "root@10.10.10.220";
  imports =
    [ # Include the results of the hardware scan.
      <nixpkgs/nixos/modules/virtualisation/virtualbox-image.nix>
      ../2configs/main-laptop.nix #< base-gui

      # environment

      ../2configs/zsh-user.nix
      ../2configs/virtualization.nix
    ];

  # allow vbob to deploy self
  users.extraUsers = {
    root = {
        openssh.authorizedKeys.keys = [ config.krebs.users.makefu-vbob.pubkey  ];
    };
  };
  nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; };
  environment.systemPackages = with pkgs;[
    get
  ];

  networking.firewall.allowedTCPPorts = [
    25
    80
  ];

  krebs.retiolum = {
    enable = true;
    extraConfig = "Proxy = http global.proxy.alcatel-lucent.com 8000";
    hosts = ../../krebs/Zhosts;
    connectTo = [
      "gum"
    ];

  };
  networking.proxy.default = "http://global.proxy.alcatel-lucent.com:8000";
  fileSystems."/media/share" = {
    fsType = "vboxsf";
    device = "share";
    options = "rw,uid=9001,gid=9001";
  };

}