diff --git a/flake.nix b/flake.nix index fa442f4..89a212e 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/hosts/othalan/system.nix b/hosts/othalan/system.nix index a2d9704..34ce156 100644 --- a/hosts/othalan/system.nix +++ b/hosts/othalan/system.nix @@ -42,8 +42,12 @@ in { networking.hostName = "othalan"; time.timeZone = "US/Central"; - boot.loader = { - systemd-boot ={ enable = true; consoleMode = "max";}; + boot.loader = { + systemd-boot = + enabled + // { + consoleMode = "max"; + }; efi.canTouchEfiVariables = true; };