38 lines
478 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
`/etc/nixos/flake.nix`
17
```nix
18
{
19
inputs = {
20
mellon.url = "github:ejrichards/mellon";
21
};
22
outputs = {
23
mellon,
24
...
25
}:
26
{
27
...
28
nixosConfigurations = {
29
modules = [
30
mellon.nixosModules.default
31
];
32
};
33
}
34
```
35
36
# Usage
37
38
TODO
39