Evie Litherland-Smith
9394a99a4c
Loads of expressions were a single default.nix in a directory, instead just make a single directory Hyprland is the only directory of expressions left Move a few things around to fit this a bit better Add home/default.nix to defer "import all" from flake.nix Remove work email from default account set up, add to work laptop specifically and only Clean up a few unused expressions
23 lines
377 B
Nix
23 lines
377 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fzf = {
|
|
enable = true;
|
|
colors = {
|
|
fg = "#cad3f5";
|
|
bg = "#24273a";
|
|
hl = "#ed8796";
|
|
"fg+" = "#c678dd";
|
|
"bg+" = "#363a4f";
|
|
"hl+" = "#ed8796";
|
|
info = "#c6a0f6";
|
|
prompt = "#c6a0f6";
|
|
pointer = "#f4dbd6";
|
|
marker = "#f4dbd6";
|
|
spinner = "#f4dbd6";
|
|
header = "#ed8796";
|
|
};
|
|
};
|
|
|
|
}
|