formatting

This commit is contained in:
Daylin Morgan 2024-03-27 11:55:06 -05:00
parent 779c1cc710
commit 5973c4d8e7
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 7 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{
description = "nix begat oizys";
outputs = inputs:(import ./lib inputs).oizysFlake;
outputs = inputs: (import ./lib inputs).oizysFlake;
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

View file

@ -43,7 +43,11 @@ in {
networking.hostName = "othalan";
time.timeZone = "US/Central";
boot.loader = {
systemd-boot ={ enable = true; consoleMode = "max";};
systemd-boot =
enabled
// {
consoleMode = "max";
};
efi.canTouchEfiVariables = true;
};