-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
37 lines (28 loc) · 1.04 KB
/
Copy pathflake.nix
File metadata and controls
37 lines (28 loc) · 1.04 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
{
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
# https://github.com/NixOS/nixpkgs/tags
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-26.05";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
llm-agents.url = "github:numtide/llm-agents.nix";
nixos-wsl.url = "github:nix-community/NixOS-WSL";
impermanence.url = "github:nix-community/impermanence";
disko.url = "github:nix-community/disko";
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
};
hardware = {
url = "github:NixOS/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {flake-parts, ...} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {imports = [./modules];};
}