switch to mkdocs
This commit is contained in:
parent
9352367df5
commit
6ba43ec90a
12 changed files with 182 additions and 173 deletions
17
docs/community-builder.md
Normal file
17
docs/community-builder.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
### Access
|
||||
|
||||
If you want access read the security guide lines on [aarch64-build-box](https://github.com/nix-community/aarch64-build-box). Than add your username to [`roles/builder/users.nix`](https://github.com/nix-community/infra/blob/master/roles/builder/users.nix). Don't keep any important data in your home! We will regularly delete `/home` without further notice.
|
||||
|
||||
### Using your NixOS home-manager configuration on the hosts
|
||||
|
||||
If you happen to have your NixOS & home-manager configurations intertwined but you'd like your familiar environment on our infrastructure you can evaluate `pkgs.writeShellScript "hm-activate" config.systemd.services.home-manager-<yourusername>.serviceConfig.ExecStart` from your NixOS configuration, and send this derivation to be realized remotely: (in case you aren't a Nix trusted user)
|
||||
|
||||
```console
|
||||
# somehow get the .drv of the above expression into $path
|
||||
$ nix copy --to ssh://build01.nix-community.org --derivation $path
|
||||
$ ssh build01.nix-community.org
|
||||
$ nix-store -r $path
|
||||
$ $path
|
||||
```
|
||||
|
||||
_(My [implementation](https://github.com/ckiee/nixfiles/blob/aac57f56e417e31f00fd495d8a30fb399ecbc19b/deploy/hm-only.nix#L10) of [this](https://github.com/ckiee/nixfiles/blob/aac57f56e417e31f00fd495d8a30fb399ecbc19b/bin/c#L92-L95) ~ckie)_
|
Loading…
Add table
Add a link
Reference in a new issue