blob: 968cca8ffe58d18a9eab56bc2f7dc428221b1c2c (
plain) (
blame)
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
|
let
nixpkgsVersion = "26.05";
lanzabooteVersion = "v1.0.0";
in {
"agenix" = {
url = "github:ryantm/agenix/main";
};
"disko" = {
url = "github:nix-community/disko/master";
};
"flake-compat" = {
url = "git+https://git.lix.systems/lix-project/flake-compat?ref=main";
};
"home-manager" = {
url = "github:nix-community/home-manager/master";
};
"impermanence" = {
url = "github:nix-community/impermanence/master";
};
"lanzaboote" = {
url = "github:nix-community/lanzaboote/${lanzabooteVersion}";
};
"library" = {
url = "git+https://git.foss-syndicate.org/vhack.eu/nix-library?ref=prime";
};
"nix-index-database" = {
url = "github:nix-community/nix-index-database/main";
};
"nixos-generators" = {
url = "github:nix-community/nixos-generators/master";
};
"nixpkgs-stable" = {
url = "github:NixOS/nixpkgs/nixos-${nixpkgsVersion}";
};
"nixpkgs" = {
url = "github:NixOS/nixpkgs/nixos-unstable-small";
};
"nixvim" = {
url = "github:nix-community/nixvim/main";
};
"qmk_layout" = {
url = "git+https://git.foss-syndicate.org/bpeetz/qmk_layout?ref=prime";
};
# "serverphone" = {
# url = "git+https://codeberg.org/vhack.eu/serverphone?ref=prime";
# };
"templates" = {
url = "git+https://codeberg.org/bpeetz/flake-templates?ref=prime";
};
"treefmt-nix" = {
url = "github:numtide/treefmt-nix/main";
};
}
|