1
Fork 0

Add deployment script for distro agnostic dotfiles

This commit is contained in:
caem 2024-07-30 22:43:33 +02:00
parent ccac03f685
commit 862e544a71
Signed by: caem
GPG key ID: 69A830D03203405F
2 changed files with 7 additions and 1 deletions

View file

@ -15,7 +15,7 @@ modify and share this configuration to your heart's content, no attribution requ
├── assets ; Binary assets tracked in git
│   ├── screenshot.png
│   └── wallpaper.jpg
├── dotfiles ; GNU stow compatible dotfiles directory
├── dotfiles ; Distro agnostic dotfiles
│   └── ... ; Stores configurations that do not depend on Nix
├── flake.lock
├── flake.nix ; Entry point

6
dotfiles/deploy.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
for f in *; do
[ -d "$f" ] && ln -svf "$PWD/$f" "$HOME/.config"
done