Add NixOS config

This commit is contained in:
Zeph Levy 2025-11-11 16:09:55 +01:00
commit 6020d64797
43 changed files with 1372 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ config, pkgs, ... }: {
programs.fuzzel.enable = true;
programs.fuzzel.settings = {
main = {
image-size-ratio = 1;
cache = "/dev/null";
};
colors = {
background = "#282828ff";
text = "#ebdbb2ff";
# prompt = "#d65d0eff";
prompt = "#458588ff";
placeholder = "#bdae93ff";
input = "#d5c4a1ff";
match = "#83a598ff";
selection = "#504945ff";
selection-text = "#fbf1c7ff";
selection-match = "#fabd2fff";
counter = "#928374ff";
border = "#d65d0eff";
};
border = {
width = 2;
radius = 0;
};
};
}