Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```