-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
66 lines (59 loc) · 1.86 KB
/
Copy pathflake.nix
File metadata and controls
66 lines (59 loc) · 1.86 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
inputs = {
nixpkgs-unstable.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz";
nixpkgs-lts.url = "https://channels.ctrl-os.com/channel/ctrlos-26.05.tar.xz";
# Home manager
home-manager-unstable = {
url = "github:nix-community/home-manager?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
home-manager-lts = {
url = "github:nix-community/home-manager?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-lts";
};
sops-nix-unstable = {
url = "github:Mic92/sops-nix?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
sops-nix-lts = {
url = "github:Mic92/sops-nix?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-lts";
};
disko-unstable = {
url = "github:AlexLov/disko?rev=6747342da148f6cb28c8405a70fe00455a0ba027&shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
disko-lts = {
url = "github:nix-community/disko?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-lts";
};
nixverse = {
url = "github:hgl/nixverse?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# NixOS Hardware
hardware-unstable = {
url = "github:NixOS/nixos-hardware?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
hardware-lts = {
url = "github:NixOS/nixos-hardware?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-lts";
};
preservation.url = "github:nix-community/preservation?shallow=1";
noctalia-unstable = {
url = "github:noctalia-dev/noctalia?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
noctalia-lts = {
url = "github:noctalia-dev/noctalia?shallow=1";
inputs.nixpkgs.follows = "nixpkgs-lts";
};
};
outputs =
inputs@{ nixverse, ... }:
nixverse.lib.load {
inherit inputs;
flakePath = ./.;
};
}