tweaks
This commit is contained in:
parent
6b44ec946b
commit
20a2450683
2 changed files with 20 additions and 7 deletions
|
@ -28,12 +28,6 @@ in
|
||||||
pkgs.sops
|
pkgs.sops
|
||||||
];
|
];
|
||||||
|
|
||||||
nixos-boot = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
bgColor = { red = 30; green = 30; blue = 30; };
|
|
||||||
};
|
|
||||||
|
|
||||||
user = {
|
user = {
|
||||||
name = "chris";
|
name = "chris";
|
||||||
description = "Chris Kruining";
|
description = "Chris Kruining";
|
||||||
|
|
|
@ -1,6 +1,25 @@
|
||||||
{ config, options, lib, pkgs, ... }:
|
{ 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";
|
time.timeZone = "Europe/Amsterdam";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue