feat: add theme

shamelessly stolen from github:jnsgruk/nixos-config

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-08-28 15:35:16 +02:00
parent 63f21c6a3f
commit 0344d3ca8a
Signed by: lander
GPG key ID: 0142722B4B0C536F
5 changed files with 207 additions and 1 deletions

View file

@ -1,4 +1,7 @@
{ pkgs, self, ... }:
{ pkgs, ... }:
let
theme = import ../../../lib/theme { inherit pkgs; };
in
{
programs.alacritty = {
enable = true;
@ -17,6 +20,11 @@
live_config_reload = true;
scrolling.history = 100000;
font = {
normal.family = "${theme.fonts.monospace.name}";
size = 14;
};
};
};
}