-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
30 lines (25 loc) · 982 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
27
28
29
30
{
nixConfig = { };
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
agenix.url = "github:ryantm/agenix";
nixos-unified.url = "github:srid/nixos-unified";
github-nix-ci.url = "github:juspay/github-nix-ci";
omnix.url = "github:juspay/omnix";
# NOTE: These inputs are shared with *all* hosts.
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
harmonia.url = "github:nix-community/harmonia";
harmonia.inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
devour-flake.url = "github:srid/devour-flake";
devour-flake.inputs.flake.url = "github:nammayatri/nammayatri";
};
outputs = inputs:
inputs.nixos-unified.lib.mkFlake { inherit inputs; root = ./.; };
}