diff options
author | Karel Kočí <cynerd@email.cz> | 2022-07-02 09:44:03 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-07-02 09:44:03 +0200 |
commit | 30ebc83f8fe76da61ee9cbc6b7cd5f1f1cfc18e0 (patch) | |
tree | ec927ef2d75ef63117f1ed4199788737a1d2951d /install | |
parent | c49abeb1a3e2b526dda17e71bccba1630360470f (diff) | |
download | myconfigs-30ebc83f8fe76da61ee9cbc6b7cd5f1f1cfc18e0.tar.gz myconfigs-30ebc83f8fe76da61ee9cbc6b7cd5f1f1cfc18e0.tar.bz2 myconfigs-30ebc83f8fe76da61ee9cbc6b7cd5f1f1cfc18e0.zip |
Migrate Ridcully to NixOS
Diffstat (limited to 'install')
-rwxr-xr-x | install | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -50,6 +50,9 @@ if ask "vim" "Install VIM scripts"; then git clone "https://github.com/VundleVim/Vundle.vim.git" ~/.vim/bundle/Vundle.vim } vim +PluginUpdate +qall + # cs spelling + mkdir -p ~/.vim/spell + curl "http://ftp.vim.org/vim/runtime/spell/cs.utf-8.spl" > ~/.vim/spell/cs.utf-8.spl fi if ask "dev" "Development tools configuration"; then @@ -62,7 +65,8 @@ fi if ask "sync" "Install synchronization"; then inst local/bin/allsync ~/.local/bin/allsync if [ "$(ps -o comm= 1)" = "systemd" ]; then - inst config/systemd/user/allsync.{service,timer} ~/.config/systemd/user/ + inst config/systemd/user/allsync.service ~/.config/systemd/user/ + inst config/systemd/user/allsync.timer ~/.config/systemd/user/ fi inst private/mbsyncrc ~/.mbsyncrc |