waybar tweaks :3
This commit is contained in:
parent
fbbc23b72e
commit
af84369e19
5 changed files with 16 additions and 12 deletions
11
home.nix
11
home.nix
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue