- Move and rename host-specific configurations (e.g., wsl to hosts/wsl) - Add home.nix files for mbp and wsl, importing common modules - Update mbp flake.nix path to new hosts/mbp/configuration.nix - Integrate home-manager for user environments on macOS/WSL - Update flake.lock inputs (nixpkgs, home-manager, homebrew) for latest versions - Add README.md with project overview and setup instructions This restructures the repo for multi-host support, improves modularity, and ensures reproducible builds with updated dependencies.
35 lines
No EOL
640 B
Nix
35 lines
No EOL
640 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.fzf = {
|
|
colors = {
|
|
fg = "-1";
|
|
"fg+" = "#d0d0d0";
|
|
bg = "-1";
|
|
"bg+" = "#262626";
|
|
hl = "#5f87af";
|
|
"hl+" = "#5fd7ff";
|
|
info = "#afaf87";
|
|
marker = "#87ff00";
|
|
prompt = "#d7005f";
|
|
spinner = "#af5fff";
|
|
pointer = "#af5fff";
|
|
header = "#87afaf";
|
|
border = "#262626";
|
|
label = "#aeaeae";
|
|
query = "#d9d9d9";
|
|
};
|
|
defaultOptions = [
|
|
"--border=rounded"
|
|
"--border-label"
|
|
"--preview-window=border-rounded"
|
|
"--prompt=> "
|
|
"--marker=>"
|
|
"--pointer=◆"
|
|
"--separator=─"
|
|
"--scrollbar=│"
|
|
];
|
|
enableZshIntegration = true;
|
|
enable = true;
|
|
};
|
|
} |