summary refs log tree commit diff
path: root/profiles/graphical.nix
blob: 8ba6e7f4979e462906ef9070916ee7be68c83356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
  pkgs,
  lib,
  config,
  inputs,
  ...
}: {
  config = {
    home-manager.users.tzlil = {...}: {
      fonts.fontconfig.enable = true;

      home.packages = with pkgs; [
        iosevka
        gnome3.adwaita-icon-theme
        noto-fonts
        noto-fonts-emoji
        noto-fonts-cjk
      ];

      # gtk = {
      #   enable = true;
      #   font.name = "Victor Mono SemiBold 12";
      #   theme = {
      #     name = "SolArc-Dark";
      #     package = pkgs.solarc-gtk-theme;
      #   };
      # };

      # gtk = {
      #   theme.package = pkgs.gnome.gnome-themes-extra;
      #   theme.name = "Adwaita-dark";
      #   enable = true;
      #   gtk3.extraConfig = {
      #     gtk-application-prefer-dark-theme = 1;
      #     gtk-xft-hinting = 1;
      #     gtk-xft-hintstyle = "slight";
      #     gtk-xft-antialias = 1; # => font-antialiasing="grayscale"
      #     gtk-xft-rgba = "rgb"; # => font-rgb-order="rgb"
      #   };
      #   font = {
      #     package = pkgs.noto-fonts;
      #     name = "Noto Sans 11";
      #   };
      # };
    };
  };
}