Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/earldouglas/derivations
A collection of Nix derivations
https://github.com/earldouglas/derivations
Last synced: 12 days ago
JSON representation
A collection of Nix derivations
- Host: GitHub
- URL: https://github.com/earldouglas/derivations
- Owner: earldouglas
- Created: 2023-08-26T15:38:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-15T18:31:56.000Z (28 days ago)
- Last Synced: 2024-10-17T03:36:43.175Z (27 days ago)
- Language: Vim Script
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Usage
## nix-env
```
$ nix-env -i -f ./vim/unison/default.nix
$ nix-env -i -f ./vim/unison/unison.nix
```## nix-shell
```
$ nix-shell ./vim/unison/shell.nix
```## NixOS
*configuration.nix:*
```nix
letderivations =
pkgs.fetchFromGitHub {
owner = "earldouglas";
repo = "derivations";
rev = "816ff78c3da0f90b07eafd174a386c8f885cf14a";
sha256 = "13sy7axxj6517iqkidq3s132adk4s217mm7i7ni92fh7p89scd2a";
};vim-unison = import (derivations + "/vim/unison/default.nix") {};
unison-nix = import (derivations + "/vim/unison/unison.nix") {};in {
environment.systemPackages = [
vim-unison
unison-nix.unison-ucm
];}
```