43 lines
601 B
1
# mellon
2
## Speak, friend, and enter
3
4
Modules for [Elvish Shell](https://github.com/elves/elvish)
5
6
# Install
7
8
```elvish
9
use epm
10
epm:install &silent-if-installed=$true github.com/ejrichards/mellon
11
12
```
13
14
## NixOS
15
16
`flake.nix` supplies a NixOS module that lets you import in the same manner as `epm`
17
18
```nix
19
{
20
inputs = {
21
mellon.url = "github:ejrichards/mellon";
22
};
23
24
outputs = {
25
mellon,
26
...
27
}:
28
{
29
...
30
nixosConfigurations = {
31
modules = [
32
mellon.nixosModules.default
33
];
34
};
35
}
36
```
37
38
# Usage
39
## TODO
40
41
```elvish
42
use github.com/ejrichards/mellon/<module>
43
```
44