2023-06-28 16:10:01 -04:00
|
|
|
{ config, ... }:
|
2023-06-27 10:13:14 -04:00
|
|
|
|
|
|
|
let
|
|
|
|
configDir = "/home/matt/.nix/configs";
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2023-06-27 17:19:28 -04:00
|
|
|
programs = {
|
|
|
|
fzf = {
|
|
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
2023-06-27 17:22:34 -04:00
|
|
|
#colors = {
|
|
|
|
# not working ?
|
|
|
|
#};
|
2023-06-27 17:19:28 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
eww = {
|
|
|
|
enable = true;
|
2023-06-28 16:10:01 -04:00
|
|
|
configDir = config.lib.file.mkOutOfStoreSymlink "${configDir}/eww"; # see hyprland.nix for scripts path
|
2023-06-27 17:19:28 -04:00
|
|
|
package = (builtins.getFlake "github:matt1432/eww-exclusiver").packages.x86_64-linux.default;
|
|
|
|
};
|
2023-06-27 10:13:14 -04:00
|
|
|
|
2023-06-27 17:19:28 -04:00
|
|
|
alacritty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
env = {
|
|
|
|
POKE = "true";
|
2023-06-27 10:13:14 -04:00
|
|
|
};
|
|
|
|
|
2023-06-27 17:19:28 -04:00
|
|
|
window = {
|
|
|
|
padding = {
|
|
|
|
x = 0;
|
|
|
|
y = 10;
|
|
|
|
};
|
2023-06-27 10:13:14 -04:00
|
|
|
|
2023-06-27 17:19:28 -04:00
|
|
|
opacity = 0.8;
|
2023-06-27 10:13:14 -04:00
|
|
|
};
|
2023-06-27 17:19:28 -04:00
|
|
|
|
|
|
|
colors = {
|
|
|
|
primary = {
|
|
|
|
background = "0x0c0c0c";
|
|
|
|
foreground = "0xfcfcfc";
|
|
|
|
|
|
|
|
dim_foreground = "0xeff0f1";
|
|
|
|
bright_foreground = "0xffffff";
|
|
|
|
dim_background = "0x31363b";
|
|
|
|
bright_background = "0x000000";
|
|
|
|
};
|
|
|
|
normal = {
|
|
|
|
black = "0x232627";
|
|
|
|
red = "0xed1515";
|
|
|
|
green = "0x11d116";
|
|
|
|
yellow = "0xf67400";
|
|
|
|
blue = "0x1d99f3";
|
|
|
|
magenta = "0x9b59b6";
|
|
|
|
cyan = "0x1abc9c";
|
|
|
|
white = "0xfcfcfc";
|
|
|
|
};
|
2023-06-27 10:13:14 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|