This commit is contained in:
Chris Kruining 2025-03-09 23:36:32 +01:00
parent 6b44ec946b
commit 20a2450683
2 changed files with 20 additions and 7 deletions

View file

@ -28,12 +28,6 @@ in
pkgs.sops
];
nixos-boot = {
enable = true;
bgColor = { red = 30; green = 30; blue = 30; };
};
user = {
name = "chris";
description = "Chris Kruining";

View file

@ -1,6 +1,25 @@
{ config, options, lib, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader = {
efi.canTouchEfiVariables = true;
# grub = {
# enable = true;
# efiSupport = cfg.mode == "uefi";
# devices = [ "nodev" ];
# configurationLimit = 1;
# };
systemd-boot.enable = true;
timeout = 0;
};
# nixos-boot = {
# enable = true;
# bgColor = { red = 17; green = 17; blue = 27; };
# };
time.timeZone = "Europe/Amsterdam";
}