mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
gnome-terminal: load configuration at right time
If the dconf service hasn't been installed then the configuration activation will fail. Thus, make sure the activation script is run after packages have been installed.
This commit is contained in:
parent
34d472886d
commit
119c7b2538
1 changed files with 2 additions and 1 deletions
|
@ -182,7 +182,8 @@ in
|
|||
sf = pkgs.writeText "gnome-terminal.ini" (toINI (buildIniSet cfg));
|
||||
dconfPath = "/org/gnome/terminal/legacy/";
|
||||
in
|
||||
''
|
||||
# The dconf service needs to be installed and prepared.
|
||||
stringAfter [ "installPackages" ] ''
|
||||
if [[ $DRY_RUN ]]; then
|
||||
echo ${pkgs.gnome3.dconf}/bin/dconf load ${dconfPath} "<" ${sf}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue