cleanups
This commit is contained in:
parent
91c1ed1fb0
commit
e610f7d781
2 changed files with 12 additions and 3 deletions
|
|
@ -80,6 +80,7 @@ in
|
|||
|
||||
gtk = lib.mkIf hostConfig.isLinux {
|
||||
enable = true;
|
||||
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
||||
font = {
|
||||
name = "SF Pro Display";
|
||||
size = 11;
|
||||
|
|
|
|||
|
|
@ -37,9 +37,12 @@ let
|
|||
'';
|
||||
in
|
||||
{
|
||||
home.sessionVariables = {
|
||||
QT_AUTO_SCREEN_SCALE_FACTOR = "1";
|
||||
};
|
||||
home.sessionVariables = lib.mkMerge [
|
||||
{ QT_AUTO_SCREEN_SCALE_FACTOR = "1"; }
|
||||
(lib.mkIf config.gtk.enable {
|
||||
GTK_RC_FILES = "${config.xdg.configHome}/gtk-2.0/gtkrc";
|
||||
})
|
||||
];
|
||||
|
||||
dconf = {
|
||||
enable = true;
|
||||
|
|
@ -69,6 +72,11 @@ in
|
|||
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
package = pkgs.waybar.overrideAttrs (old: {
|
||||
postInstall = (old.postInstall or "") + ''
|
||||
rm -rf $out/share/systemd
|
||||
'';
|
||||
});
|
||||
settings.mainBar = {
|
||||
reload_style_on_change = true;
|
||||
layer = "top";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue