added back simple desktop stack as alternatives

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-21 12:36:35 +02:00
parent febd23355d
commit 552ae67f6a
Signed by: semere
GPG key ID: 7FC937214DF30488
9 changed files with 153 additions and 2 deletions

38
modules/fuzzel.nix Normal file
View file

@ -0,0 +1,38 @@
{
config,
lib,
pkgs,
userVars,
...
}:
{
home-manager.users."${userVars.username}" = {
programs.fuzzel = {
enable = true;
settings = {
main = {
font = "JetBrainsMono Nerd Font:size=13";
dpi-aware = "auto";
width = 40;
line-height = 18;
fields = "name,generic,comment,categories,filename,keywords";
terminal = "foot";
};
colors = {
background = "1e1e2eff";
text = "cdd6f4ff";
match = "f38ba8ff";
selection = "585b70ff";
selection-text = "cdd6f4ff";
selection-match = "f38ba8ff";
border = "89b4faff";
};
border = {
width = 2;
radius = 4;
};
};
};
};
}