mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
15 lines
592 B
Nix
15 lines
592 B
Nix
{ pkgs, inputs, ... }: {
|
|
imports = [ inputs.stylix.nixosModules.stylix ];
|
|
stylix = {
|
|
enable = true;
|
|
polarity = "dark";
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-hard.yaml";
|
|
|
|
# This doesn't work and idk why
|
|
# image = pkgs.fetchurl {
|
|
# url = "hhttps://codeberg.org/lunik1/nixos-logo-gruvbox-wallpaper/raw/branch/master/png/gruvbox-dark-rainbow.pngttps://codeberg.org/lunik1/nixos-logo-gruvbox-wallpaper/raw/branch/master/png/gruvbox-dark-rainbow.png";
|
|
# sha256 = "036gqhbf6s5ddgvfbgn6iqbzgizssyf7820m5815b2gd748jw8zc";
|
|
# };
|
|
};
|
|
}
|