mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -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";
|
description = "nix begat oizys";
|
||||||
|
|
||||||
outputs = inputs:(import ./lib inputs).oizysFlake;
|
outputs = inputs: (import ./lib inputs).oizysFlake;
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
|
|
|
@ -42,8 +42,12 @@ in {
|
||||||
|
|
||||||
networking.hostName = "othalan";
|
networking.hostName = "othalan";
|
||||||
time.timeZone = "US/Central";
|
time.timeZone = "US/Central";
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
systemd-boot ={ enable = true; consoleMode = "max";};
|
systemd-boot =
|
||||||
|
enabled
|
||||||
|
// {
|
||||||
|
consoleMode = "max";
|
||||||
|
};
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue