-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflake.nix
71 lines (52 loc) · 2.55 KB
/
flake.nix
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
68
69
70
71
{
description = "Vic's Nix Environment";
nixConfig = {
allow-import-from-derivation = true;
extra-trusted-public-keys = [
"vix.cachix.org-1:hP/Lpdsi1dB3AxK9o6coWh+xHzvAc4ztdDYuG7lC6dI="
];
extra-substituters = [ "https://vix.cachix.org" ];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable&shallow=1";
systems.url = "github:nix-systems/default?ref=main&shallow=1";
# not used here but followed by other deps to get a flat dep tree
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.systems.follows = "systems";
blueprint.url = "github:numtide/blueprint?shallow=1";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
blueprint.inputs.systems.follows = "systems";
nix-darwin.url = "github:LnL7/nix-darwin?ref=master&shallow=1";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
nixos-wsl.url = "github:nix-community/nixos-wsl?ref=main&shallow=1";
nixos-wsl.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager?ref=master&shallow=1";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
vscode-server.url = "github:nix-community/nixos-vscode-server?ref=master&shallow=1";
vscode-server.inputs.nixpkgs.follows = "nixpkgs";
vscode-server.inputs.flake-utils.follows = "flake-utils";
cli-leader.url = "github:dhamidi/leader?ref=14373a2&shallow=1";
cli-leader.flake = false;
nox.url = "github:madsbv/nix-options-search?ref=main&shallow=1";
nox.inputs.nixpkgs.follows = "nixpkgs";
nox.inputs.flake-utils.follows = "flake-utils";
devshell.url = "github:numtide/devshell?ref=main&shallow=1";
devshell.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = "github:Mic92/sops-nix?ref=master&shallow=1";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
nix-index-database.url = "github:nix-community/nix-index-database?ref=main&shallow=1";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
use_devshell_toml.url = "github:vic/use_devshell_toml";
use_devshell_toml.inputs.nixpkgs.follows = "nixpkgs";
use_devshell_toml.inputs.treefmt-nix.follows = "treefmt-nix";
SPC.url = "github:vic/SPC";
SPC.inputs.nixpkgs.follows = "nixpkgs";
SPC.inputs.blueprint.follows = "blueprint";
SPC.inputs.treefmt-nix.follows = "treefmt-nix";
doom-emacs.url = "github:doomemacs/doomemacs";
doom-emacs.flake = false;
};
outputs = inputs: inputs.blueprint { inherit inputs; };
}