This commit is contained in:
Oliver Davies 2024-09-23 13:17:10 +01:00
parent 1e83c4bf8b
commit 9cdb4461a4
4 changed files with 52 additions and 27 deletions

View file

@ -1,10 +1,16 @@
{ lib, pkgs, self, ... }:
{
lib,
pkgs,
self,
...
}:
let
inherit (lib) strings;
inherit (strings) toInt;
theme = import "${self}/lib/theme" { inherit pkgs; };
in {
in
{
programs.alacritty = {
enable = true;
@ -30,7 +36,9 @@ in {
glyph_offset.y = 6;
};
shell = { program = "zsh"; };
shell = {
program = "zsh";
};
};
};
}