10 lines
289 B
Nix
10 lines
289 B
Nix
|
{ pkgs, ... }: {
|
||
|
# Themes https://github.com/tinted-theming/base16-schemes
|
||
|
stylix = {
|
||
|
image = /etc/nixos/git/wallpapers/stylix/wallpaper1.png;
|
||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/atelier-cave-light.yaml";
|
||
|
polarity = "light";
|
||
|
autoEnable = true;
|
||
|
};
|
||
|
}
|