feat: convert the rest of the configs to hjem

This commit is contained in:
uku 2025-05-08 12:20:30 +02:00
parent 689c291762
commit 63d99f2062
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
10 changed files with 361 additions and 293 deletions

View file

@ -1,24 +1,24 @@
{ lib, pkgs, ... }:
{
hm.programs.fuzzel = {
enable = true;
settings = {
main = {
font = "Iosevka Nerd Font:size=16";
dpi-aware = false;
horizontal-pad = 20;
};
environment.systemPackages = [ pkgs.fuzzel ];
border.radius = 8;
hj.".config/fuzzel/fuzzel.ini".text = lib.generators.toINI { } {
main = {
font = "Iosevka Nerd Font:size=16";
dpi-aware = false;
horizontal-pad = 20;
};
colors = {
background = "24273aff"; # base
border = "91d7e3cc"; # sky
text = "cad3f5ff"; # text
match = "a6da95ff"; # green
selection = "f4dbd6ff"; # rosewater
selection-text = "181926ff"; # crust
selection-match = "40a02bff"; # latte green
};
border.radius = 8;
colors = {
background = "24273aff"; # base
border = "91d7e3cc"; # sky
text = "cad3f5ff"; # text
match = "a6da95ff"; # green
selection = "f4dbd6ff"; # rosewater
selection-text = "181926ff"; # crust
selection-match = "40a02bff"; # latte green
};
};
}