26 lines
436 B
Nix
26 lines
436 B
Nix
![]() |
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = [ pkgs.dconf ];
|
||
|
|
||
|
stylix = {
|
||
|
enable = true;
|
||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-soft.yaml";
|
||
|
|
||
|
image = ../../wallpaper3.png;
|
||
|
|
||
|
cursor = {
|
||
|
package = pkgs.oreo-cursors-plus;
|
||
|
name = "oreo_white_cursors";
|
||
|
size = 24;
|
||
|
};
|
||
|
|
||
|
opacity = {
|
||
|
desktop = 0.0; #waybars opacity
|
||
|
popups = 0.75;
|
||
|
terminal = 0.9;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|