summaryrefslogtreecommitdiff
path: root/hel/boot.nix
blob: ddf84e868b13af8fa6266c963ed036389c240e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, pkgs, ... }:

{
  boot = {
    initrd.luks.devices = [ { name = "ssd"; device = "/dev/disk/by-uuid/9e9e430c-f9cd-418e-b66b-60f81ba9293b"; }
                          ];
    loader = {
      gummiboot.enable = true;
      efi.canTouchEfiVariables = true;
    };

    tmpOnTmpfs = true;
  };
}