From ed48d2966c8c8b5c0799a0cb7c884bd786a85b55 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 8 Feb 2024 12:43:28 -0600 Subject: [PATCH] put newline somewhere else --- hosts/othalan/default.nix | 1 + hosts/othalan/system.nix | 6 ++---- lib/default.nix | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hosts/othalan/default.nix b/hosts/othalan/default.nix index e02080b..718044a 100644 --- a/hosts/othalan/default.nix +++ b/hosts/othalan/default.nix @@ -19,6 +19,7 @@ tex = true; node = true; }; + environment.systemPackages = with pkgs; [ zk rclone diff --git a/hosts/othalan/system.nix b/hosts/othalan/system.nix index 2787de2..0a36bd9 100644 --- a/hosts/othalan/system.nix +++ b/hosts/othalan/system.nix @@ -3,9 +3,7 @@ pkgs, mkRune, ... -}: let - rune = import ../../modules/runes/othalan.nix; -in { +}: { networking.networkmanager.enable = true; services.printing.enable = true; services.fwupd.enable = true; @@ -31,7 +29,7 @@ in { ]; services.getty.greetingLine = - ''<<< Welcome to NixOS ${config.system.nixos.label} (\m) - \l >>>'' + ''<<< Welcome to NixOS ${config.system.nixos.label} (\m) - \l >>>\n'' + mkRune { rune = "othalan"; runeKind = "ascii"; diff --git a/lib/default.nix b/lib/default.nix index 3306354..2e3f341 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -16,7 +16,7 @@ in rec { number ? "6", runeKind ? "braille", }: - "[1;3${number}m\n\n" + runes.${rune}.${runeKind} + "\n"; + "[1;3${number}m\n" + runes.${rune}.${runeKind} + "\n"; isNixFile = path: hasSuffix ".nix" path; buildOizys = _: