summaryrefslogtreecommitdiffstats
path: root/lass/1systems/mors.nix
blob: dc09c9d301d084de8346be50365942199de6c10f (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
{ config, pkgs, ... }:

{
  imports = [
    ../.
    ../2configs/baseX.nix
    ../2configs/programs.nix
    ../2configs/bitcoin.nix
    ../2configs/browsers.nix
    ../2configs/games.nix
    ../2configs/pass.nix
    ../2configs/virtualbox.nix
    ../2configs/elster.nix
    ../2configs/steam.nix
    ../2configs/wine.nix
    ../2configs/texlive.nix
    ../2configs/binary-caches.nix
    #../2configs/ircd.nix
    ../2configs/chromium-patched.nix
    ../2configs/git.nix
    #../2configs/wordpress.nix
    ../2configs/bitlbee.nix
    #../2configs/firefoxPatched.nix
    ../2configs/skype.nix
    ../2configs/teamviewer.nix
    ../2configs/libvirt.nix
    ../2configs/fetchWallpaper.nix
    #../2configs/buildbot-standalone.nix
    {
      #risk of rain port
      krebs.iptables.tables.filter.INPUT.rules = [
        { predicate = "-p tcp --dport 11100"; target = "ACCEPT"; }
      ];
    }
    {
      #static-nginx-test
      imports = [
        ../3modules/static_nginx.nix
      ];
      lass.staticPage."testserver.de" = {
        #sslEnable = true;
        #certificate = "${toString <secrets>}/testserver.de/server.cert";
        #certificate_key = "${toString <secrets>}/testserver.de/server.pem";
        ssl = {
          enable = true;
          certificate = "${toString <secrets>}/testserver.de/server.cert";
          certificate_key = "${toString <secrets>}/testserver.de/server.pem";
        };
      };
      networking.extraHosts = ''
        10.243.0.2 testserver.de
      '';
    }
    #{
    #  #wordpress-test
    #  #imports = singleton (sitesGenerators.createWordpress "testserver.de");
    #  imports = [
    #    ../3modules/wordpress_nginx.nix
    #  ];
    #  lass.wordpress."testserver.de" = {
    #    multiSite = {
    #      "1" = "testserver.de";
    #      "2" = "bla.testserver.de";
    #    };
    #  };

    #  services.mysql = {
    #    enable = true;
    #    package = pkgs.mariadb;
    #    rootPassword = "<secrets>/mysql_rootPassword";
    #  };
    #  networking.extraHosts = ''
    #    10.243.0.2 testserver.de
    #  '';
    #  krebs.iptables.tables.filter.INPUT.rules = [
    #    { predicate = "-i retiolum -p tcp --dport 80"; target = "ACCEPT"; precedence = 9998; }
    #  ];
    #}
    #{
    #  #owncloud-test
    #  #imports = singleton (sitesGenerators.createWordpress "testserver.de");
    #  imports = [
    #    ../3modules/owncloud_nginx.nix
    #  ];
    #  lass.owncloud."owncloud-test.de" = {
    #  };

    #  #services.mysql = {
    #  #  enable = true;
    #  #  package = pkgs.mariadb;
    #  #  rootPassword = "<secrets>/mysql_rootPassword";
    #  #};
    #  networking.extraHosts = ''
    #    10.243.0.2 owncloud-test.de
    #  '';
    #  krebs.iptables.tables.filter.INPUT.rules = [
    #    { predicate = "-i retiolum -p tcp --dport 80"; target = "ACCEPT"; precedence = 9998; }
    #  ];
    #}
    {
      containers.pythonenv = {
        config = {
          services.openssh.enable = true;
          users.users.root.openssh.authorizedKeys.keys = [
            config.krebs.users.lass.pubkey
          ];

          environment = {
            systemPackages = with pkgs; [
              git
              libxml2
              libxslt
              libzip
              python27Full
              python27Packages.buildout
              stdenv
              zlib
            ];

            pathsToLink = [ "/include" ];

            shellInit = ''
              # help pip to find libz.so when building lxml
              export LIBRARY_PATH=/var/run/current-system/sw/lib
              # ditto for header files, e.g. sqlite
              export C_INCLUDE_PATH=/var/run/current-system/sw/include
            '';
          };

        };
      };
    }
    {
      services.mysql = {
        enable = true;
        package = pkgs.mariadb;
        rootPassword = "<secrets>/mysql_rootPassword";
      };
    }
    {
      services.elasticsearch = {
        enable = true;
        plugins = [
          pkgs.elasticsearchPlugins.elasticsearch_kopf
        ];
      };
    }
  ];

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

  networking.wireless.enable = true;

  networking.extraHosts = ''
    213.239.205.240 wohnprojekt-rhh.de
    213.239.205.240 karlaskop.de
    213.239.205.240 makeup.apanowicz.de
    213.239.205.240 pixelpocket.de
    213.239.205.240 reich-gebaeudereinigung.de
    213.239.205.240 o.ubikmedia.de
  '';

  hardware.enableAllFirmware = true;
  nixpkgs.config.allowUnfree = true;

  boot = {
    loader.grub.enable = true;
    loader.grub.version = 2;
    loader.grub.device = "/dev/sda";

    initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; } ];
    initrd.luks.cryptoModules = [ "aes" "sha512" "sha1" "xts" ];
    initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ];
    #kernelModules = [ "kvm-intel" "msr" ];
    kernelModules = [ "msr" ];
  };
  fileSystems = {
    "/" = {
      device = "/dev/big/nix";
      fsType = "ext4";
    };

    "/boot" = {
      device = "/dev/sda1";
    };

    "/mnt/loot" = {
      device = "/dev/big/loot";
      fsType = "ext4";
    };

    "/home" = {
      device = "/dev/big/home";
      fsType = "ext4";
    };

    "/home/lass" = {
      device = "/dev/big/home-lass";
      fsType = "ext4";
    };

    "/mnt/backups" = {
      device = "/dev/big/backups";
      fsType = "ext4";
    };

    "/home/games/.local/share/Steam" = {
      device = "/dev/big/steam";
      fsType = "ext4";
    };

    "/home/virtual/virtual" = {
      device = "/dev/big/virtual";
      fsType = "ext4";
    };

    "/mnt/public" = {
      device = "/dev/big/public";
      fsType = "ext4";
    };

    "/mnt/conf" = {
      device = "/dev/big/conf";
      fsType = "ext4";
    };
  };

  services.udev.extraRules = ''
    SUBSYSTEM=="net", ATTR{address}=="a0:88:b4:29:26:bc", NAME="wl0"
    SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:0c:a7:63", NAME="et0"
  '';

  #TODO activationScripts seem broken, fix them!
  #activationScripts
  #split up and move into base
  system.activationScripts.powertopTunables = ''
    #Enable Audio codec power management
    echo '1' > '/sys/module/snd_hda_intel/parameters/power_save'
    #VM writeback timeout
    echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs'
    #Autosuspend for USB device Broadcom Bluetooth Device [Broadcom Corp]
    #echo 'auto' > '/sys/bus/usb/devices/1-1.4/power/control'
    #Autosuspend for USB device Biometric Coprocessor
    echo 'auto' > '/sys/bus/usb/devices/1-1.3/power/control'

    #Runtime PMs
    echo 'auto' > '/sys/bus/pci/devices/0000:00:02.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:16.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:03:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.3/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.2/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.3/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:0d:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1b.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1a.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:19.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:16.3/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.1/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.4/power/control'
  '';

  hardware.trackpoint = {
    enable = true;
    sensitivity = 220;
    speed = 0;
    emulateWheel = true;
  };

  #services.xserver = {
  #  videoDriver = "intel";
  #  vaapiDrivers = [ pkgs.vaapiIntel ];
  #  deviceSection = ''
  #    Option "AccelMethod" "sna"
  #    BusID "PCI:0:2:0"
  #  '';
  #};

  environment.systemPackages = with pkgs; [
    cac-api
    sshpass
    get
    teamspeak_client
    hashPassword
  ];

  #TODO: fix this shit
  ##fprint stuff
  ##sudo fprintd-enroll $USER to save fingerprints
  #services.fprintd.enable = true;
  #security.pam.services.sudo.fprintAuth = true;

  users.extraGroups = {
    loot = {
      members = [
        config.users.extraUsers.mainUser.name
        "firefox"
        "chromium"
        "google"
        "virtual"
      ];
    };
  };

  services.mongodb = {
    enable = true;
  };

  krebs.iptables = {
    tables = {
      filter.INPUT.rules = [
        { predicate = "-p tcp --dport 8000"; target = "ACCEPT"; precedence = 9001; }
      ];
    };
  };

  #touchpad config
  services.xserver.synaptics = {
    enable = true;
    accelFactor = "0.035";
    additionalOptions = ''
      Option "FingerHigh" "60"
      Option "FingerLow"  "60"
    '';
    tapButtons = false;
    twoFingerScroll = true;
  };
}