Update github actions

This commit is contained in:
Hadi
2024-10-14 22:07:10 +02:00
parent 34cc630789
commit ff7f46aa5d
3 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{ config, ... }:
let
background = "#${config.lib.stylix.colors.base00}";
font = "${config.stylix.fonts.serif.name}";
in {
programs.tofi = {
enable = true;
settings = {
background-color = background;
border-width = 0;
font = font;
height = "100%";
num-results = 5;
outline-width = 0;
padding-left = "35%";
padding-top = "35%";
result-spacing = 25;
width = "100%";
};
};
}