-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflake.nix
26 lines (20 loc) · 913 Bytes
/
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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# blueprint.url = "path:/Users/robert/Developer/blueprint";
blueprint.url = "github:numtide/blueprint";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
nix-darwin.url = "github:LnL7/nix-darwin/master";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
helix.url = "github:clo4/helix/helix-cogs-steel-language-server";
helix.inputs.nixpkgs.follows = "nixpkgs";
steel.url = "github:mattwparas/steel";
steel.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
nix-homebrew.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: inputs.blueprint { inherit inputs; };
}