Add NixOS config
This commit is contained in:
commit
6020d64797
43 changed files with 1372 additions and 0 deletions
27
home-manager/modules/fuzzel.nix
Normal file
27
home-manager/modules/fuzzel.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue