nix-config/modules/system/home/niri-setup/default.nix
2024-03-13 21:01:32 +01:00

22 lines
447 B
Nix

{ pkgs, ... }: {
programs.fuzzel= {
enable = true;
settings = {
colors = {
background = "191724ee";
text = "e0def4ff";
match = "eb6f92ff";
selection = "524f67ee";
selection-text = "e0def4ff";
selection-match = "eb6f92ff";
border = "26233aff";
};
};
};
services.mako = {
enable = true;
backgroundColor = "#191724ee";
borderColor = "#26233a";
};
}