summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/x.nix
blob: 77b9915ae0caf386d1ce5f4814a79c3916e89e13 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#
#
#
{ config, pkgs, ... }:
with import <stockholm/lib>;

{
  imports =
    [ # base
      ../.
      ../2configs/main-laptop.nix
      ../2configs/extra-fonts.nix
      ../2configs/tools/all.nix
      ../2configs/laptop-backup.nix
      ../2configs/dnscrypt.nix
      ../2configs/avahi.nix

      # Debugging
      # ../2configs/disable_v6.nix

      # Testing
      # ../2configs/deployment/dirctator.nix
      # ../2configs/vncserver.nix
      # ../2configs/deployment/led-fader
      # ../2configs/deployment/hound

      # development
      ../2configs/sources

      # Krebs
      ../2configs/tinc/retiolum.nix

      # applications
      ../2configs/exim-retiolum.nix
      ../2configs/mail-client.nix
      ../2configs/printer.nix

      # Virtualization
      ../2configs/virtualization.nix
      ../2configs/docker.nix
      ../2configs/virtualization-virtualbox.nix

      # Services
      ../2configs/git/brain-retiolum.nix
      ../2configs/tor.nix
      ../2configs/steam.nix
      # ../2configs/buildbot-standalone.nix

      # Hardware
      ../2configs/hw/tp-x230.nix
      ../2configs/hw/rtl8812au.nix
      ../2configs/hw/exfat-nofuse.nix
      ../2configs/hw/wwan.nix
      # ../2configs/hw/stk1160.nix
      # ../2configs/rad1o.nix

      # Filesystem
      ../2configs/fs/sda-crypto-root-home.nix

    ];

  makefu.server.primary-itf = "wlp3s0";
  makefu.full-populate = true;
  makefu.umts.apn = "web.vodafone.de";

  nixpkgs.config.allowUnfree = true;

  environment.systemPackages = [ pkgs.passwdqc-utils ];


  # configure pulseAudio to provide a HDMI sink as well
  networking.firewall.enable = true;
  networking.firewall.allowedTCPPorts = [ 80 24800 26061 8000 3000 ];
  networking.firewall.allowedUDPPorts = [ 665 26061 ];

  krebs.build.host = config.krebs.hosts.x;

  krebs.tinc.retiolum.connectTo = [ "omo" "gum" "prism" ];

  networking.extraHosts = ''
    192.168.1.11 omo.local
  '';
  # hard dependency because otherwise the device will not be unlocked
  boot.initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; allowDiscards=true; }];
}