dotfiles/modules/desktop/gtk.nix

15 lines
231 B
Nix

{ config, lib, pkgs, ... }:
{
home-manager.users.moritz = {
gtk = {
enable = true;
theme = {
package = pkgs.dracula-theme;
name = "Dracula";
};
};
};
programs.dconf.enable = true;
}