mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-30 22:57:54 +00:00
f450efa7f3
With the added interface for multiple manifests, it is now possible to set up this setup around it. In my case, I simply created an extra folder in '.vtsm'. Along with the restructuring, some configurations are changed such as the customized Newsboat config and minor updates here and there.
14 lines
452 B
Makefile
Executable File
14 lines
452 B
Makefile
Executable File
MANIFEST := nixos-zilch
|
|
|
|
.PHONY = install
|
|
install:
|
|
./vtsm --manifest ".vtsm/${MANIFEST}.json" --commands "mkdir -p {location} && stow --stow {package} --target {location}"
|
|
|
|
.PHONY = reinstall
|
|
reinstall:
|
|
./vtsm --manifest ".vtsm/${MANIFEST}.json" --commands "mkdir -p {location} && stow --restow {package} --target {location}"
|
|
|
|
.PHONY = clean
|
|
clean:
|
|
./vtsm --manifest ".vtsm/${MANIFEST}.json" --commands "stow --delete {package} --target {location}"
|