28 lines
650 B
Nix
28 lines
650 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec = [
|
|
"cp -L --no-preserve=mode --update=none ~/.config/hypr/scheme/default.conf ~/.config/hypr/scheme/current.conf"
|
|
];
|
|
source = [
|
|
"~/.config/hypr/scheme/current.conf"
|
|
];
|
|
group = {
|
|
groupbar = {
|
|
"text_color" = "rgb($onPrimary)";
|
|
"col.active" = "rgba($primaryd4)";
|
|
"col.inactive" = "rgba($outlined4)";
|
|
"col.locked_active" = "rgba($primaryd4)";
|
|
"col.locked_inactive" = "rgba($secondaryd4)";
|
|
};
|
|
};
|
|
misc = {
|
|
background_color = "rgb($surfaceVariant)";
|
|
};
|
|
};
|
|
}
|