summaryrefslogtreecommitdiff
path: root/home/graphics.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/graphics.nix')
-rw-r--r--home/graphics.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/home/graphics.nix b/home/graphics.nix
new file mode 100644
index 0000000..724f9d4
--- /dev/null
+++ b/home/graphics.nix
@@ -0,0 +1,33 @@
+{ config, lib, pkgs, ... }:
+with lib; {
+ config = {
+ fonts.fontconfig.enable = true;
+
+ gtk = {
+ enable = true;
+ gtk3.bookmarks = [ "file:///home/ale/vtmp" "file:///home/ale/tmp" ];
+
+ gtk2.extraConfig = ''
+ gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ
+ gtk-menu-images=1
+ gtk-button-images=1
+ '';
+
+ font = {
+ package = pkgs.noto-fonts;
+ name = "Noto Sans Regular";
+ #size = 14; <- caga layout de páginas
+ };
+
+ theme = {
+ package = pkgs.materia-theme;
+ name = "Materia-dark";
+ };
+ };
+
+ qt = {
+ enable = true;
+ platformTheme = "gtk";
+ };
+ };
+}