-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
47 lines (45 loc) · 1.25 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
{
description = "Infrastructure configuration for Prism Launcher";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "flake-utils/systems";
};
srvos = {
url = "github:nix-community/srvos";
inputs.nixpkgs.follows = "nixpkgs";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence.url = "github:nix-community/impermanence";
nixos-facter-modules.url = "github:numtide/nixos-facter-modules";
comin = {
url = "github:nlewo/comin";
inputs.nixpkgs.follows = "nixpkgs";
};
blockgame-meta = {
url = "github:PrismLauncher/meta";
inputs.nixpkgs.follows = "nixpkgs";
};
refraction = {
url = "github:PrismLauncher/refraction";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{ flake-utils, ... }@inputs:
flake-utils.lib.meld inputs [
./machines/andesite
./modules
./development.nix
];
}