xdg.nix: add xdg-utils to home.packages
This commit is contained in:
parent
bf9f2cc13e
commit
3288271c0e
1 changed files with 6 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue