mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
gnome-terminal: replace deprecated package names
The names `gnome3.vte` and `gnome3.gnome_terminal` have been replaced by their more modern names.
This commit is contained in:
parent
410d2febbb
commit
248dc17394
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ let
|
|||
|
||||
vteInitStr = ''
|
||||
# gnome-terminal: Show current directory in the terminal window title.
|
||||
. ${pkgs.gnome3.vte}/etc/profile.d/vte.sh
|
||||
. ${pkgs.vte}/etc/profile.d/vte.sh
|
||||
'';
|
||||
|
||||
backForeSubModule = types.submodule ({ ... }: {
|
||||
|
@ -199,7 +199,7 @@ in {
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ pkgs.gnome3.gnome_terminal ];
|
||||
home.packages = [ pkgs.gnome3.gnome-terminal ];
|
||||
|
||||
dconf.settings = let dconfPath = "org/gnome/terminal/legacy";
|
||||
in {
|
||||
|
|
Loading…
Reference in a new issue