waybar tweaks :3

This commit is contained in:
CDaut 2024-04-26 10:39:18 +02:00
parent fbbc23b72e
commit af84369e19
Signed by: clara
GPG key ID: 223391B52FAD4463
5 changed files with 16 additions and 12 deletions

View file

@ -4,11 +4,12 @@ let
inherit (pkgs.texlive) scheme-full;
});
in
let username = "clemens"; in
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "clemens";
home.homeDirectory = "/home/clemens";
home.username = username;
home.homeDirectory = "/home/${username}";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
@ -83,10 +84,6 @@ in
target = ".config/i3/lock.sh";
executable = true;
};
wallpaper = {
source = ./media/wallpaper.png;
target = ".background-image";
};
};
# envars
@ -95,7 +92,7 @@ in
GTK_THEME = "Adwaita:dark";
};
systemd.user.sessionVariables = {
GTK2_RC_FILES = "/home/clemens/.gtkrc-2.0";
GTK2_RC_FILES = "/home/${username}/.gtkrc-2.0";
GTK_THEME = "Adwaita:dark";
};
}