mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
put newline somewhere else
This commit is contained in:
parent
fba73fdaa4
commit
ed48d2966c
3 changed files with 4 additions and 5 deletions
|
@ -19,6 +19,7 @@
|
|||
tex = true;
|
||||
node = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
zk
|
||||
rclone
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -16,7 +16,7 @@ in rec {
|
|||
number ? "6",
|
||||
runeKind ? "braille",
|
||||
}:
|
||||
"[1;3${number}m\n\n" + runes.${rune}.${runeKind} + "\n[0m";
|
||||
"[1;3${number}m\n" + runes.${rune}.${runeKind} + "\n[0m";
|
||||
|
||||
isNixFile = path: hasSuffix ".nix" path;
|
||||
buildOizys = _:
|
||||
|
|
Loading…
Reference in a new issue