-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
60 lines (49 loc) · 1.39 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
description = "ARbitrary NixOS base configurations";
inputs = {
# conventional nixos channels
nixpkgs.url = "nixpkgs/nixos-22.11";
unstable.url = "github:ArctarusLimited/nixpkgs";
# official flakes
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# our flakes
xnlib = {
url = "github:ArctarusLimited/xnlib";
inputs.nixpkgs.follows = "nixpkgs";
};
# community flakes
nur.url = "github:nix-community/NUR";
nixlib.url = "github:nix-community/nixpkgs.lib";
impermanence.url = "github:nix-community/impermanence";
nixos-generate = {
url = "github:nix-community/nixos-generators";
inputs.nixlib.follows = "nixlib";
inputs.nixpkgs.follows = "nixpkgs";
};
# third party
flake-compat = {
flake = false;
url = "github:edolstra/flake-compat";
};
flake-utils.url = "github:numtide/flake-utils/flatten-tree-system";
colmena.url = "github:zhaofengli/colmena";
home = {
url = "github:nix-community/home-manager/release-22.11";
inputs.nixpkgs.follows = "nixpkgs";
};
bud = {
url = "github:divnix/bud";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixos, ... }:
let
lib = import ./lib {
baseInputs = inputs;
};
inherit (lib.kuiser) mkBaseRepo;
in
mkBaseRepo {
inherit inputs;
};
}