mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
formatting
This commit is contained in:
parent
779c1cc710
commit
5973c4d8e7
2 changed files with 7 additions and 3 deletions
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue