8 lines
269 B
Nix
Raw Normal View History

2024-04-24 17:14:59 +03:00
{ pkgs, ... }: {
2024-09-16 11:36:27 +03:00
xdg.configFile."wofi/style.css".source = pkgs.fetchurl {
2024-04-24 17:14:59 +03:00
name = "style.css";
2024-09-16 11:36:27 +03:00
url = "https://github.com/joao-vitor-sr/wofi-themes-collection/raw/main/themes/nord.css";
sha256 = "sha256-rMDtE7Q0hmqd9LD+Ur/QR6cMan9ev6e9IyzpwY367c0=";
2024-04-24 17:14:59 +03:00
};
}