1
0
Fork 0
nixos-conf/modules/home-manager/xfce-home.nix
2024-06-14 22:23:12 +02:00

32 lines
726 B
Nix

# Source: https://gist.github.com/nat-418/1101881371c9a7b419ba5f944a7118b0
{ config, pkgs, lib, ... }:
{
# Styling is done via Stylix. Therefore, the following block is no
# longer necessary
# gtk = {
# enable = true;
# iconTheme = {
# name = "elementary-Xfce-dark";
# package = pkgs.elementary-xfce-icon-theme;
# };
# theme = {
# name = "zukitre-dark";
# package = pkgs.zuki-themes;
# };
# gtk3.extraConfig = {
# Settings = ''
# gtk-application-prefer-dark-theme=1
# '';
# };
# gtk4.extraConfig = {
# Settings = ''
# gtk-application-prefer-dark-theme=1
# '';
# };
# };
programs.gpg.enable = true;
services.gpg-agent.enable = true;
}