-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
51 lines (47 loc) · 2.15 KB
/
Copy pathflake.nix
File metadata and controls
51 lines (47 loc) · 2.15 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
{
description = "rcambrj's dotfiles";
nixConfig = {
extra-substituters = [
"https://cache.garnix.io"
"https://nix-community.cachix.org"
"https://numtide.cachix.org"
];
extra-trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE"
];
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
systems.url = "github:nix-systems/default";
blueprint.url = "github:numtide/blueprint";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs";
agenix-template.url = "github:jhillyerd/agenix-template";
nix-pia-vpn.url = "github:rcambrj/nix-pia-vpn";
nix-pia-vpn.inputs.nixpkgs.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
vscode-server.url = "github:nix-community/nixos-vscode-server";
vscode-server.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
nix-vscode-extensions.inputs.nixpkgs.follows = "nixpkgs";
fusuma.url = "github:rcambrj/fusuma";
# fusuma.url = "github:rcambrj/nixpkgs?ref=update-fusuma";
fusuma.inputs.nixpkgs.follows = "nixpkgs";
fusuma-plugin-appmatcher.url = "github:rcambrj/fusuma-plugin-appmatcher";
fusuma-plugin-appmatcher.inputs.nixpkgs.follows = "nixpkgs";
nix-pi-loader.url = "github:rcambrj/nix-pi-loader";
nix-pi-loader.inputs.nixpkgs.follows = "nixpkgs";
unifi-os-server.url = "github:rcambrj/unifi-os-server";
# unifi-os-server.url = "/Users/rcambrj/projects/nix/unifi-os-server";
unifi-os-server.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs: inputs.blueprint { inherit inputs; };
}