lsp on the workstation

This commit is contained in:
Geir Okkenhaug Jerstad 2024-07-02 15:02:33 +02:00
parent 02bc2398e3
commit 2f4fa4afd6
4 changed files with 89 additions and 3 deletions

29
workstation/tty.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, ... }:
{
services.getty.greetingLine = ''\l'';
console = {
earlySetup = true;
# Joker palette
colors = [
"1b161f"
"ff5555"
"54c6b5"
"d5aa2a"
"bd93f9"
"ff79c6"
"8be9fd"
"bfbfbf"
"1b161f"
"ff6e67"
"5af78e"
"ffce50"
"caa9fa"
"ff92d0"
"9aedfe"
"e6e6e6"
];
};
}