summaryrefslogtreecommitdiff
path: root/sys/default.nix
blob: 08b6549821ecc534d79fb2cd986395858662436b (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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
selfFlake:
{ lib, config, pkgs, modulesPath, ... }:
with lib; let
  cfg = config.local;
in {
  imports = [ "${modulesPath}/installer/scan/not-detected.nix" ];

  options.local = with lib.types; {
    hostname = mkOption {
      type = str;
    };

    portable = mkOption {
      type = bool;
    };

    loader = mkOption {
      type = enum [ "grub" "systemd-boot" ];
    };

    canTouchEfiVariables = mkOption {
      type = bool;
    };

    dhcpInterface = mkOption {
      type = nullOr str;
      default = null;
    };

    videoDrivers = mkOption {
      type = listOf str;
    };

    initrdModules = mkOption {
      type = listOf str;
    };

    snapperSubvols = mkOption {
      type = attrsOf str;
      default = {};
    };

    crypt = mkOption {
      type = submodule {
        options = {
          toplevel = mkOption {
            type = submodule {
              options = {
                device = mkOption {
                  type = str;
                };

                target = mkOption {
                  type = str;
                };

                headerFromBoot = mkOption {
                  type = str;
                };
              };
            };
          };

          aux = mkOption {
            default = [];
            type = listOf (submodule {
              options = {
                device = mkOption {
                  type = str;
                };

                target = mkOption {
                  type = str;
                };

                header = mkOption {
                  type = str;
                };

                keyfile = mkOption {
                  type = str;
                };
              };
            });
          };
        };
      };
    };

    fs = mkOption {
      type = submodule {
        options = {
          boot = mkOption {
            type = submodule {
              options = {
                device = mkOption {
                  type = str;
                };
              };
            };
          };

          sys = mkOption {
            type = submodule {
              options = {
                device = mkOption {
                  type = str;
                };

                ssd = mkOption {
                  type = bool;
                };

                root = mkOption {
                  type = str;
                };

                toplevel = mkOption {
                  type = str;
                };
              };
            };
          };

          hdd = mkOption {
            type = submodule {
              options = {
                device = mkOption {
                  type = str;
                };

                home = mkOption {
                  type = str;
                };
              };
            };
          };
        };
      };
    };
  };

  config = {
    nixpkgs.overlays = [ selfFlake.overlay ];

    # This value determines the NixOS release from which the default
    # settings for stateful data, like file locations and database versions
    # on your system were taken. It‘s perfectly fine and recommended to leave
    # this value at the release version of the first install of this system.
    # Before changing this value read the documentation for this option
    # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
    system.stateVersion = "21.11"; # Did you read the comment?

    nix = {
      package = pkgs.nixFlakes;
      extraOptions = ''
        experimental-features = nix-command flakes
      '';
    };

    boot = {
      # !!!
      tmpOnTmpfs = true;

      loader = (if cfg.loader == "grub" then {
        grub = {
          enable = true;
          device = "nodev";
          efiSupport = true;
        };
      } else {
        systemd-boot.enable = true;
      }) // {
        efi = {
          inherit (cfg) canTouchEfiVariables;
        };
      };

      initrd = let
        crypt = cfg.crypt.toplevel;
        headerPathEscaped = escapeShellArg "/initrd-boot/${crypt.headerFromBoot}";
      in {
        availableKernelModules = cfg.initrdModules;
        supportedFilesystems = [ "vfat" ];

        preDeviceCommands = ''
          mkdir -p `dirname ${headerPathEscaped}`
          touch ${headerPathEscaped}
        '';
 
        preLVMCommands = optionalString cfg.portable ''
          sleep 2 #TODO
        '';

        postMountCommands = let
          fromRoot = path: escapeShellArg "/mnt-root/${path}";
          auxOpen = aux: ''
            cryptsetup -v open \
              --header ${fromRoot aux.header} \
              --key-file ${fromRoot aux.keyfile} \
              ${aux.device} ${aux.target}
          '';
        in concatStringsSep "\n" (map auxOpen cfg.crypt.aux);

        luks.devices."${crypt.target}" = {
          inherit (crypt) device;
          header = "/initrd-boot/${crypt.headerFromBoot}";
          preLVM = false;

          preOpenCommands = ''
            mount -o ro -t vfat ${escapeShellArg cfg.fs.boot.device} /initrd-boot
          '';

          postOpenCommands = ''
            umount /initrd-boot
          '';
        };

        #network = {
        #  enable = true;

        #  ssh = {
        #    enable = true;
        #    port = 2234;
        #  };
        #};
      };
    };

    hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

    fileSystems = let
      inherit (cfg) fs;
      btrfs = { device, subvol, isSys }: {
        inherit device;
        fsType = "btrfs";
        options = let
          ssd = optional (isSys && fs.sys.ssd) "ssd";
        in [ "noatime" "compress=zstd" "subvol=${subvol}" ] ++ ssd;
      };
    in {
      "/" = btrfs {
        inherit (fs.sys) device;
        subvol = fs.sys.root;
        isSys = true;
      };

      "/toplevel" = btrfs {
        inherit (fs.sys) device;
        subvol = fs.sys.toplevel;
        isSys = true;
      };

      "/hdd" = btrfs {
        inherit (fs.hdd) device;
        subvol = "/";
        isSys = false;
      };

      "/home" = btrfs {
        inherit (fs.hdd) device;
        subvol = fs.hdd.home;
        isSys = false;
      };

      "/boot" = {
        inherit (fs.boot) device;
        fsType = "vfat";
        options = [ "noatime" "umask=027" ];
      };
    };

    time.timeZone = "America/Costa_Rica";

    networking = {
      hostName = cfg.hostname;
      useDHCP = false;

      interfaces = mkIf (cfg.dhcpInterface != null) {
        "${cfg.dhcpInterface}".useDHCP = true;
      };

      wireguard.enable = true;
    };

    i18n.defaultLocale = "es_CR.UTF-8";

    sound.enable = true;
    hardware.pulseaudio.enable = true;

    services.xserver = {
      enable = true;
      videoDrivers = cfg.videoDrivers ++ [ "modesetting" "fbdev" ];
      libinput.enable = true;
      displayManager.startx.enable = true;
    };

    services.udev.packages = [
      pkgs.android-udev-rules
    ];

    security.pam = {
      oath = {
        usersFile = "/var/trust/users.oath";
        digits = 6;
        window = 30;
      };

      services.sshd.oathAuth = true;
    };

    services.openssh = {
      enable = true;
      openFirewall = false;
      ports = [ 2234 ];

      forwardX11 = true;
      permitRootLogin = "no";
      passwordAuthentication = false;

      hostKeys = [
        {
          bits = 4096;
          path = "/etc/ssh/ssh_host_rsa_key";
          type = "rsa";
        }
        {
          path = "/etc/ssh/ssh_host_ed25519_key";
          type = "ed25519";
        }
        #TODO: Desfasar, inseguro
        {
          path = "/etc/ssh/ssh_host_ecdsa_key";
          type = "ecdsa";
        }
      ];
    };

    local.snapperSubvols.home = "/home";

    services.snapper.configs = let
      snapperConfig = _: subvolume: {
        inherit subvolume;

        extraConfig = ''
          # btrfs qgroup for space aware cleanup algorithms
          QGROUP=""

          # fraction of the filesystems space the snapshots may use
          SPACE_LIMIT="0.5"

          # fraction of the filesystems space that should be free
          FREE_LIMIT="0.2"

          # users and groups allowed to work with config
          ALLOW_USERS=""
          ALLOW_GROUPS=""

          # sync users and groups from ALLOW_USERS and ALLOW_GROUPS to .snapshots
          # directory
          SYNC_ACL="no"

          # start comparing pre- and post-snapshot in background after creating
          # post-snapshot
          BACKGROUND_COMPARISON="yes"

          # run daily number cleanup
          NUMBER_CLEANUP="yes"

          # limit for number cleanup
          NUMBER_MIN_AGE="1800"
          NUMBER_LIMIT="100"
          NUMBER_LIMIT_IMPORTANT="10"

          # create hourly snapshots
          TIMELINE_CREATE="yes"

          # cleanup hourly snapshots after some time
          TIMELINE_CLEANUP="yes"

          # limits for timeline cleanup
          TIMELINE_MIN_AGE="1800"
          TIMELINE_LIMIT_HOURLY="24"
          TIMELINE_LIMIT_DAILY="7"
          TIMELINE_LIMIT_WEEKLY="4"
          TIMELINE_LIMIT_MONTHLY="12"
          TIMELINE_LIMIT_YEARLY="10"

          # cleanup empty pre-post-pairs
          EMPTY_PRE_POST_CLEANUP="yes"

          # limits for empty pre-post-pair cleanup
          EMPTY_PRE_POST_MIN_AGE="1800"
        '';
      };
    in mapAttrs snapperConfig cfg.snapperSubvols;

    networking.firewall.allowedTCPPorts = [ 2234 ];

    programs = {
      dconf.enable = true;
      zsh.enable = true;
    };

    environment.pathsToLink = [ "/share/zsh" ];

    users.users = {
      ale = {
        isNormalUser = true;
        uid = 1000;
        group = "ale";
        extraGroups = [ "users" "wheel" "adbusers" ];
        shell = pkgs.zsh;
      };

      tutorias = {
        isNormalUser = true;
        uid = 1004;
        group = "tutorias";
        extraGroups = [ "users" ];
        shell = pkgs.zsh;
      };
    };

    users.groups = {
      ale.gid = 1001;
      tutorias.gid = 1007;
      adbusers.gid = 1008;
    };
  };
}