main
 1{
 2  den.aspects.tribios = {
 3    nixos = {
 4      hardware.facter.reportPath = ./facter.json;
 5
 6      boot.loader = {
 7        systemd-boot = {
 8          enable = true;
 9          consoleMode = "auto";
10        };
11
12        efi = {
13          canTouchEfiVariables = false;
14          efiSysMountPoint = "/boot";
15        };
16      };
17    };
18  };
19}