This commit is contained in:
Alexander
2025-08-03 21:44:24 +02:00
parent 57d74eb310
commit 58dcc17440
5 changed files with 12 additions and 0 deletions
+3
View File
@@ -16,6 +16,9 @@
packages = with pkgs; [
# thunar plugin to manager archives
xfce.thunar-archive-plugin
# Stow, to manage my doom emacs configs
stow
];
};
+9
View File
@@ -0,0 +1,9 @@
#+title: Stow managed files
* Why
These dotfiles managed by stow as I tend to tinker with them from time to time and manage them with home-manager is not very practical as you would need to do switch everytime you do the change in order to apply it, but stow just creates symlinks to the files and I can easily have them in repo and use them as configs else where.
* How to
#+begin_src bash
stow --target=$HOME .
#+end_src