-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Shunpo with Nix | ||
A nix flake for Shunpo is provided in `nix/flake.nix`. | ||
|
||
|
||
Building | ||
--- | ||
You can test Shunpo by building the nix flake with `nix build .` , which will generate a folder called `result`. | ||
Next intialize Shunpo by running `source result/bin/shunpo_init`. | ||
|
||
Installation | ||
--- | ||
To install the package run `nix install .#shunpo`, and initialize Shunpo by running `source shunpo_init`. | ||
If you would like to have Shunpo initialize by default, you can add an initialization line to your .bashrc by running: | ||
``` | ||
echo "source shunpo_init" >> ~/.bashrc | ||
``` |