diff options
-rw-r--r-- | home.nix | 2 | ||||
-rw-r--r-- | hosts/myrtle/configuration.nix | 4 | ||||
-rw-r--r-- | programs/st/config.h | 2 | ||||
-rw-r--r-- | services/dunst.nix | 2 | ||||
-rw-r--r-- | x/xft.nix | 2 |
5 files changed, 7 insertions, 5 deletions
@@ -87,7 +87,7 @@ | |||
87 | windowManager.command = "2bwm"; | 87 | windowManager.command = "2bwm"; |
88 | initExtra = '' | 88 | initExtra = '' |
89 | ${pkgs.hsetroot}/bin/hsetroot -solid "${theme.base00}" | 89 | ${pkgs.hsetroot}/bin/hsetroot -solid "${theme.base00}" |
90 | xrandr --dpi 288 | 90 | xrandr --dpi 192 |
91 | xrdb -load $HOME/.Xresources | 91 | xrdb -load $HOME/.Xresources |
92 | ''; | 92 | ''; |
93 | }; | 93 | }; |
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix index 8803649..2f47776 100644 --- a/hosts/myrtle/configuration.nix +++ b/hosts/myrtle/configuration.nix | |||
@@ -103,7 +103,9 @@ | |||
103 | enable = true; | 103 | enable = true; |
104 | enableUserService = true; | 104 | enableUserService = true; |
105 | }; | 105 | }; |
106 | services.supergfxd.enable = true; | 106 | services.supergfxd.enable = false; |
107 | |||
108 | powerManagement.powertop.enable = true; | ||
107 | 109 | ||
108 | users.users.np = { | 110 | users.users.np = { |
109 | isNormalUser = true; | 111 | isNormalUser = true; |
diff --git a/programs/st/config.h b/programs/st/config.h index a0811fa..c9fca58 100644 --- a/programs/st/config.h +++ b/programs/st/config.h | |||
@@ -6,7 +6,7 @@ | |||
6 | * | 6 | * |
7 | * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html | 7 | * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html |
8 | */ | 8 | */ |
9 | static char *font = "Nerd Input:pixelsize=30:antialias=true:autohint=true"; | 9 | static char *font = "Nerd Input:pixelsize=44:antialias=true:autohint=true"; |
10 | static int borderpx = 30; | 10 | static int borderpx = 30; |
11 | 11 | ||
12 | /* | 12 | /* |
diff --git a/services/dunst.nix b/services/dunst.nix index 570beba..b8bda7f 100644 --- a/services/dunst.nix +++ b/services/dunst.nix | |||
@@ -10,7 +10,7 @@ with theme; | |||
10 | enable = true; | 10 | enable = true; |
11 | settings = { | 11 | settings = { |
12 | global = { | 12 | global = { |
13 | font = "Input 9"; | 13 | font = "Nerd Input 12"; |
14 | allow_markup = "no"; | 14 | allow_markup = "no"; |
15 | format = ''%s\n%b''; | 15 | format = ''%s\n%b''; |
16 | sort = "yes"; | 16 | sort = "yes"; |
@@ -11,6 +11,6 @@ | |||
11 | "Xft.hintstyle" = "hintslight"; | 11 | "Xft.hintstyle" = "hintslight"; |
12 | "Xft.hinting" = true; | 12 | "Xft.hinting" = true; |
13 | "Xft.rgba" = "rgb"; | 13 | "Xft.rgba" = "rgb"; |
14 | "Xft.dpi" = 288; | 14 | "Xft.dpi" = 192; |
15 | }; | 15 | }; |
16 | } | 16 | } |