-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
39 lines (37 loc) · 1 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-filter.url = "github:numtide/nix-filter";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts.url = "github:hercules-ci/flake-parts";
proc-flake.url = "github:srid/proc-flake";
flake-root.url = "github:srid/flake-root";
};
outputs = { self, flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
imports = [
inputs.proc-flake.flakeModule
inputs.flake-root.flakeModule
./modules
./checks
./nixosModules
];
flake = {
overlays.default = final: prev:
let
inherit (final.stdenv) system;
in
{
inherit (self.packages.${system}) nxy-agent nxy-server nxy-cli;
};
};
};
}