-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
42 lines (37 loc) · 1.13 KB
/
flake.nix
File metadata and controls
42 lines (37 loc) · 1.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
{
description = "XnodeOS Modules";
inputs = {
nixpkgs.url = "https://channels.nixos.org/nixos-25.11/nixexprs.tar.xz";
nixos-facter-modules.url = "github:nix-community/nixos-facter-modules";
disko = {
url = "github:nix-community/disko/latest";
inputs.nixpkgs.follows = "nixpkgs";
};
xnode-manager = {
url = "github:Openmesh-Network/xnode-manager/dev";
inputs.nixpkgs.follows = "nixpkgs";
};
xnode-auth = {
url = "github:Openmesh-Network/xnode-auth";
inputs.nixpkgs.follows = "nixpkgs";
};
};
nixConfig = {
extra-substituters = [
"https://openmesh.cachix.org"
"https://nix-community.cachix.org"
];
extra-trusted-public-keys = [
"openmesh.cachix.org-1:du4NDeMWxcX8T5GddfuD0s/Tosl3+6b+T2+CLKHgXvQ="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
outputs = inputs: {
nixosModules = {
default = import ./nix/nixos-module.nix { inherit inputs; };
container = ./nix/container-module.nix;
dns = ./nix/dns-module.nix;
reverse-proxy = ./nix/reverse-proxy-module.nix;
};
};
}