From 3288271c0e762fd6cece716da34a53d91c716577 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Mon, 23 Sep 2024 18:53:58 +0200 Subject: [PATCH] xdg.nix: add xdg-utils to home.packages --- modules/other/xdg.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/other/xdg.nix b/modules/other/xdg.nix index b53e1c4..71094df 100644 --- a/modules/other/xdg.nix +++ b/modules/other/xdg.nix @@ -1,4 +1,8 @@ -{config, ...}: let +{ + config, + pkgs, + ... +}: let inherit (config.modules.other.system) username; hmCfg = config.home-manager.users.${username}; @@ -16,6 +20,7 @@ in { }; home-manager.users.${username} = { + home.packages = [pkgs.xdg-utils]; xdg = { cacheHome = "${hmCfg.home.homeDirectory}/.cache"; configHome = "${hmCfg.home.homeDirectory}/.config";