Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiaragrouwstra/nixos-configs
collection of nixos configs
https://github.com/kiaragrouwstra/nixos-configs
Last synced: about 1 month ago
JSON representation
collection of nixos configs
- Host: GitHub
- URL: https://github.com/kiaragrouwstra/nixos-configs
- Owner: KiaraGrouwstra
- Created: 2024-03-31T15:46:34.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-06T17:31:31.000Z (5 months ago)
- Last Synced: 2024-10-15T13:29:41.683Z (3 months ago)
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nixos-configs
## usage
```sh
git submodule init
git submodule update
```## updating
```sh
git submodule update --recursive --remote
```## adding more
given a directory of configs, print the command to add these like:
```sh
for d in */ ; do
cd $d
echo "git submodule add $(git config --get remote.origin.url) $d"
cd ..
done
```