Skip to content

Commit

Permalink
Add gtk and xdg configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiyq Widianto committed Sep 18, 2020
1 parent c4b28a1 commit beefc47
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
File renamed without changes.
20 changes: 15 additions & 5 deletions users/misc.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, ... }: {

{
home-manager.users.rafiyq = {
gtk = {
enable = true;
font = { name = "Noto Sans 11"; package = pkgs.noto-fonts; };
iconTheme = { name = "Yaru"; package = pkgs.yaru-theme; };
theme = { name = "Yaru"; package = pkgs.yaru-theme; };
font = {
name = "Noto Sans 11";
package = pkgs.noto-fonts;
};
iconTheme = {
name = "Yaru";
package = pkgs.yaru-theme;
};
theme = {
name = "Yaru";
package = pkgs.yaru-theme;
};
#gtk2.extraConfig = { };
gtk3.extraConfig = {
gtk-xft-antialias = 1;
gtk-xft-hinting = 1;
Expand All @@ -17,6 +26,7 @@
xdg = {
enable = true;
userDirs.enable = true;
mimeApps.enabel = true;
};
};
}

0 comments on commit beefc47

Please sign in to comment.