nixos-config/users/rouven/modules/theme/default.nix

12 lines
212 B
Nix
Raw Normal View History

2023-01-22 23:00:16 +01:00
{ config, pkgs, lib, ... }:
{
# theme hardcoded to dracula, too lazy to make all this base16
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
};
}