Skip to content

Commit

Permalink
+ migrate to org
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Dec 1, 2024
1 parent 7fca6e3 commit 9a95674
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Vaultix

[![nixos infra](https://img.shields.io/badge/NixOS%20infra-3A8FB7?style=for-the-badge&logo=nixos&logoColor=BBDDE5)](https://nixos.wiki/wiki/Comparison_of_secret_managing_schemes)
[![doc](https://img.shields.io/badge/document-B4A582?style=for-the-badge&logo=gitbook&logoColor=white)](https://oluceps.github.io/vaultix/)
[![eval status](https://img.shields.io/github/actions/workflow/status/oluceps/vaultix/eval.yaml?branch=main&style=for-the-badge&label=eval&color=00AA90)](https://github.com/oluceps/vaultix/actions?query=branch%3Amain)
[![test status](https://img.shields.io/github/actions/workflow/status/oluceps/vaultix/test.yaml?branch=main&style=for-the-badge&label=test&color=00AA90)](https://github.com/oluceps/vaultix/actions?query=branch%3Amain)
[![doc](https://img.shields.io/badge/document-B4A582?style=for-the-badge&logo=gitbook&logoColor=white)](https://milieuim.github.io/vaultix/)
[![eval status](https://img.shields.io/github/actions/workflow/status/milieuim/vaultix/eval.yaml?branch=main&style=for-the-badge&label=eval&color=00AA90)](https://github.com/milieuim/vaultix/actions?query=branch%3Amain)
[![test status](https://img.shields.io/github/actions/workflow/status/milieuim/vaultix/test.yaml?branch=main&style=for-the-badge&label=test&color=00AA90)](https://github.com/milieuim/vaultix/actions?query=branch%3Amain)

Secret managing scheme for NixOS

Expand All @@ -20,4 +20,4 @@ Highly inspired by [agenix-rekey](https://github.com/oddlama/agenix-rekey) and [

## Setup

See [docs](https://oluceps.github.io/vaultix/)
See [docs](https://milieuim.github.io/vaultix/)
4 changes: 2 additions & 2 deletions book.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[book]
authors = ["oluceps"]
authors = ["milieuim"]
language = "en"
multilingual = false
src = "doc"
title = "Vaultix Documentation"

[output.html]
git-repository-url = "https://github.com/oluceps/vaultix"
git-repository-url = "https://github.com/milieuim/vaultix"
git-repository-icon = "fa-github"
2 changes: 1 addition & 1 deletion doc/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ nix eval .#nixosConfigurations.your-hostname.config.vaultix-debug --json > profi
So that you can feed it to vaultix cli directly:

```bash
nix run github:oluceps/vaultix -- -p ./profile.json deploy
nix run github:milieuim/vaultix -- -p ./profile.json deploy
```

To be notice that deploy secrets that needs to be extracted before user init (deploy with --early) in this way is meaningless.
2 changes: 1 addition & 1 deletion doc/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

**Q.** Rebooting and unit failed with could not found ssh private key, but it indeed just there.

**A.** Check if using `root on tmpfs`, and modify [hostKeys](https://oluceps.github.io/vaultix/nixos-option.html#hostkeys) path to Absolute path string which your REAL private key located (not bind mounted or symlinked etc.). This could also fix similar issue happened with agenix and sops-nix...
**A.** Check if using `root on tmpfs`, and modify [hostKeys](https://milieuim.github.io/vaultix/nixos-option.html#hostkeys) path to Absolute path string which your REAL private key located (not bind mounted or symlinked etc.). This could also fix similar issue happened with agenix and sops-nix...

---
2 changes: 1 addition & 1 deletion doc/flake-option.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Here is a flake module configuration, it should be written in your flake top-lev

Commented options means its default value.

You could find the definition [here](https://github.com/oluceps/vaultix/blob/main/flake-module.nix)
You could find the definition [here](https://github.com/milieuim/vaultix/blob/main/flake-module.nix)

```nix
flake.vaultix = {
Expand Down
2 changes: 1 addition & 1 deletion doc/prerequisits.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ nix.settings = {

> `flake-parts` structured config
[flake-parts](https://flake.parts/) provides modulized flake config, vaultix using [flake module](https://github.com/oluceps/vaultix/blob/main/flake-module.nix) to produce nix apps and hidding complexity.
[flake-parts](https://flake.parts/) provides modulized flake config, vaultix using [flake module](https://github.com/milieuim/vaultix/blob/main/flake-module.nix) to produce nix apps and hidding complexity.

---

Expand Down
4 changes: 2 additions & 2 deletions doc/setup.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# setup

You could also find the minimal complete nixos configuration on [CI VM test](https://github.com/oluceps/vaultix/tree/main/dev).
You could also find the minimal complete nixos configuration on [CI VM test](https://github.com/milieuim/vaultix/tree/main/dev).

### Layout Preview

Expand All @@ -27,7 +27,7 @@ You could also find the minimal complete nixos configuration on [CI VM test](htt
inherit self; # Required
};
modules = [
inputs.oluceps.nixosModules.vaultix # import nixosModule
inputs.milieuim.nixosModules.vaultix # import nixosModule
(
{ config, ... }:
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ impl CompleteProfile<'_> {
debug!("checking in-store path: {}", p.path.display());
if !p.path.exists() {
return Err(eyre!(
"See https://oluceps.github.io/vaultix/nix-apps.html#renc"
"See https://milieuim.github.io/vaultix/nix-apps.html#renc"
))
.wrap_err_with(|| eyre!("Please run renc and add new production to git"))
.wrap_err_with(|| eyre!("Forget adding it to git?"))
Expand Down

0 comments on commit 9a95674

Please sign in to comment.