diff options
author | Tim Keller <tjkeller.xyz> | 2025-01-09 14:09:23 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-01-09 14:09:23 -0600 |
commit | 1aecda08d2dae31aa855b5c873696ef680664a48 (patch) | |
tree | 3e80ed4a5d675c6c8c9d2d3ed6e526e9dff59076 | |
parent | 8bcc21fec9d681cdfc974a801026ba4808392881 (diff) | |
download | nixos-1aecda08d2dae31aa855b5c873696ef680664a48.tar.xz nixos-1aecda08d2dae31aa855b5c873696ef680664a48.zip |
fix mimewiz in home setup and add pdfchain to office software
-rw-r--r-- | modules/home/initial-home-setup.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/home/initial-home-setup.nix b/modules/home/initial-home-setup.nix index 2348b79..046f5a5 100644 --- a/modules/home/initial-home-setup.nix +++ b/modules/home/initial-home-setup.nix @@ -11,8 +11,9 @@ run rm -f $VERBOSE_ARG $HOME/{.zcompdump,.zshrc,.zsh_history,.bash_history} ''; mimewiz = lib.hm.dag.entryAfter ["writeBoundary"] '' + export PATH="${pkgs.xdg-utils}/bin:$PATH" export PATH="$HOME/.local/bin/misc:$PATH" - run mimewiz # already verbose + run mimewiz -i # already verbose ''; createDirs = lib.hm.dag.entryAfter ["writeBoundary"] '' run mkdir -p $VERBOSE_ARG "${userDetails.home.downloads}" |