users/kat/gui/xdg: Added xdg-utils for wezterm hyperlinks

This commit is contained in:
kat witch 2021-06-03 02:17:23 +01:00
parent d16435ca25
commit 9f6eed9d18
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 8 additions and 1 deletions

View file

@ -3,7 +3,7 @@
{
deploy.profile.gui = true;
imports = [ ./firefox ./kitty.nix ./packages.nix ./gtk.nix ./wezterm.nix ./foot.nix ];
imports = [ ./firefox ./kitty.nix ./packages.nix ./gtk.nix ./wezterm.nix ./foot.nix ./xdg.nix ];
fonts.fontconfig.enable = true;
}

7
users/kat/gui/xdg.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
xdg-utils
];
}