-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathflake.nix
More file actions
36 lines (34 loc) · 1.41 KB
/
flake.nix
File metadata and controls
36 lines (34 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
description = "emanote: Emanate a structured view of your plain-text notes";
nixConfig = {
extra-substituters = "https://cache.nixos.asia/oss";
extra-trusted-public-keys = "oss:KO872wNJkCDgmGN3xy9dT89WAhvv13EiKncTtHDItVU=";
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
haskell-flake.url = "github:srid/haskell-flake";
fourmolu-nix.url = "github:jedimahdi/fourmolu-nix";
git-hooks.url = "github:bmrips/git-hooks.nix";
git-hooks.flake = false;
nixos-unified.url = "github:srid/nixos-unified";
# These are not (necessarily) upstreamed to nixpkgs, yet.
ema.url = "github:srid/ema/0.12.0.0";
ema.flake = false;
lvar.url = "github:srid/lvar/0.2.0.0";
lvar.flake = false;
heist-extra.url = "github:srid/heist-extra";
heist-extra.flake = false;
unionmount.url = "github:srid/unionmount/0.3.0.0";
unionmount.flake = false;
commonmark-simple.url = "github:srid/commonmark-simple/0.2.0.0";
commonmark-simple.flake = false;
commonmark-wikilink.url = "github:srid/commonmark-wikilink/0.2.0.0";
commonmark-wikilink.flake = false;
emanote-template.url = "github:srid/emanote-template";
emanote-template.flake = false;
};
outputs = inputs:
inputs.nixos-unified.lib.mkFlake { inherit inputs; root = ./.; };
}