put newline somewhere else

This commit is contained in:
Daylin Morgan 2024-02-08 12:43:28 -06:00
parent fba73fdaa4
commit ed48d2966c
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
3 changed files with 4 additions and 5 deletions

View File

@ -19,6 +19,7 @@
tex = true;
node = true;
};
environment.systemPackages = with pkgs; [
zk
rclone

View File

@ -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";

View File

@ -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 = _: