mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
12 lines
212 B
Nix
12 lines
212 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
# theme hardcoded to dracula, too lazy to make all this base16
|
||
|
gtk = {
|
||
|
enable = true;
|
||
|
theme = {
|
||
|
name = "Dracula";
|
||
|
package = pkgs.dracula-theme;
|
||
|
};
|
||
|
};
|
||
|
}
|