old
 1{lib, ...}: {
 2  den.aspects.core.boot = {
 3    nixos = {
 4      boot.loader = {
 5        # Don't need to keep too many generations when using Git for version control.
 6        systemd-boot.configurationLimit = lib.mkDefault 10;
 7        # pick the highest resolution for systemd-boot's console.
 8        systemd-boot.consoleMode = lib.mkDefault "max";
 9      };
10    };
11  };
12}