diff options
-rw-r--r-- | common/commandline.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/common/commandline.nix b/common/commandline.nix index 1d96caf..76f115a 100644 --- a/common/commandline.nix +++ b/common/commandline.nix | |||
@@ -17,6 +17,30 @@ in | |||
17 | (import ./commandline/zsh.nix inputs) | 17 | (import ./commandline/zsh.nix inputs) |
18 | ]; | 18 | ]; |
19 | 19 | ||
20 | console = { | ||
21 | packages = with pkgs; [ terminus_font ]; | ||
22 | font = "ter-d22n"; | ||
23 | colors = [ | ||
24 | "282a2e" | ||
25 | "a54242" | ||
26 | "8c9440" | ||
27 | "de935f" | ||
28 | "5f819d" | ||
29 | "85678f" | ||
30 | "5e8d87" | ||
31 | "707880" | ||
32 | "373b41" | ||
33 | "cc6666" | ||
34 | "b5bd68" | ||
35 | "f0c674" | ||
36 | "81a2be" | ||
37 | "b294bb" | ||
38 | "8abeb7" | ||
39 | "c5c8c6" | ||
40 | ]; | ||
41 | keyMap = "fr"; | ||
42 | }; | ||
43 | |||
20 | environment.shellAliases = { | 44 | environment.shellAliases = { |
21 | ll = "ls -l"; | 45 | ll = "ls -l"; |
22 | e = "\${EDITOR}"; | 46 | e = "\${EDITOR}"; |