-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
67 lines (49 loc) · 2.13 KB
/
Copy pathflake.nix
File metadata and controls
67 lines (49 loc) · 2.13 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
60
61
62
63
64
65
66
67
{
description = "Philip Taron's flock of Nix configuration(s)";
nixConfig.commit-lockfile-summary = "flake.nix: update the lockfile";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
inputs.systems.url = "github:nix-systems/default";
inputs.blueprint.url = "github:philiptaron/blueprint";
inputs.blueprint.inputs.nixpkgs.follows = "nixpkgs";
inputs.blueprint.inputs.systems.follows = "systems";
# My version of the h tool
inputs.h.url = "github:philiptaron/h";
inputs.h.inputs.nixpkgs.follows = "nixpkgs";
inputs.h.inputs.systems.follows = "systems";
# Vim plugins (flake = false means they're just source trees)
inputs.vim-autoformat.url = "github:Chiel92/vim-autoformat";
inputs.vim-autoformat.flake = false;
inputs.vim-nix.url = "github:LnL7/vim-nix";
inputs.vim-nix.flake = false;
inputs.editorconfig-vim.url = "github:editorconfig/editorconfig-vim";
inputs.editorconfig-vim.flake = false;
inputs.promptline-vim.url = "github:edkolev/promptline.vim";
inputs.promptline-vim.flake = false;
inputs.vim-ripgrep.url = "github:jremmen/vim-ripgrep";
inputs.vim-ripgrep.flake = false;
inputs.vim-better-whitespace.url = "github:ntpeters/vim-better-whitespace";
inputs.vim-better-whitespace.flake = false;
inputs.vim-abolish.url = "github:tpope/vim-abolish";
inputs.vim-abolish.flake = false;
inputs.vim-dispatch.url = "github:tpope/vim-dispatch";
inputs.vim-dispatch.flake = false;
inputs.vim-endwise.url = "github:tpope/vim-endwise";
inputs.vim-endwise.flake = false;
inputs.vim-repeat.url = "github:tpope/vim-repeat";
inputs.vim-repeat.flake = false;
inputs.vim-surround.url = "github:tpope/vim-surround";
inputs.vim-surround.flake = false;
inputs.vim-unimpaired.url = "github:tpope/vim-unimpaired";
inputs.vim-unimpaired.flake = false;
inputs.vim-airline.url = "github:vim-airline/vim-airline";
inputs.vim-airline.flake = false;
inputs.vim-airline-themes.url = "github:vim-airline/vim-airline-themes";
inputs.vim-airline-themes.flake = false;
# Load the blueprint
outputs =
inputs:
inputs.blueprint {
inherit inputs;
nixpkgs.config.allowUnfree = true;
};
}