-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
59 lines (44 loc) · 1.45 KB
/
flake.nix
File metadata and controls
59 lines (44 loc) · 1.45 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
description = "今日は";
inputs = rec {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
import-tree.url = "github:vic/import-tree";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
zig-overlay.url = "github:mitchellh/zig-overlay";
github-markdown-toc-go-src = {
url = "github:ekalinin/github-markdown-toc.go";
flake = false;
};
neovim-nightly-overlay = {
url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
nix-fish-src.url = "github:kidonng/nix.fish";
nix-fish-src.flake = false;
janet-vim.url = "github:janet-lang/janet.vim";
janet-vim.flake = false;
nvim-alabaster-scheme-src.url = "github:p00f/alabaster.nvim";
nvim-alabaster-scheme-src.flake = false;
vim-js.url = "github:yuezk/vim-js";
vim-js.flake = false;
# yui.url = "path:/Users/fbs/private/yui";
yui.url = "github:cidem/yui";
yui.flake = true;
operatorMono = {
url = "git+ssh://git@github.com/cidem/operatormono?ref=main";
flake = false;
};
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
}