-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
76 lines (59 loc) · 3.12 KB
/
Copy pathflake.nix
File metadata and controls
76 lines (59 loc) · 3.12 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
67
68
69
70
71
72
73
74
75
76
{
description = "My NixOS configurations.";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
import-tree.url = "github:vic/import-tree";
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-facter-detection-modules.url = "github:haras-unicorn/nixos-facter-detection-modules/refs/tags/v1.0.0";
nixos-facter-detection-modules.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/release-26.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# NOTE: https://github.com/nix-community/stylix/blob/e084d011e7ee9302aceaaf6c1fc28a9ace09e16a/doc/src/installation.md#nixos
stylix.url = "github:danth/stylix/release-26.05";
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
nur.url = "github:nix-community/NUR";
nur.inputs.nixpkgs.follows = "nixpkgs";
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
nix-vscode-extensions.inputs.nixpkgs.follows = "nixpkgs";
# NOTE: https://github.com/utensils/comfyui-nix/tree/308a863c136ffc35fce293a81eac5d229b31d56d#binary-cache
# comfyui-nix.url = "github:utensils/comfyui-nix/refs/tags/v0.25.0";
musnix.url = "github:musnix/musnix";
musnix.inputs.nixpkgs.follows = "nixpkgs";
certilia-overlay.url = "github:marijanp/certilia-overlay";
certilia-overlay.inputs.nixpkgs.follows = "nixpkgs";
# NOTE: https://github.com/numtide/llm-agents.nix/tree/8ed00a37b0800e810b8dd16efa2c6d78bdb3a091#binary-cache
llm-agents.url = "github:numtide/llm-agents.nix";
# NOTE: https://github.com/Gerg-L/spicetify-nix/blob/d9d714243e2f8d10af28db5111f018ec2d77acc9/docs/usage.md
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
# NOTE: https://github.com/noctalia-dev/noctalia-docs/blob/cec177a6b9bf928d148a669c6979cd0f62da0757/src/content/docs/v5/getting-started/nixos.mdx
noctalia.url = "github:noctalia-dev/noctalia/cachix";
};
outputs =
{ flake-parts, import-tree, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } (import-tree ./src);
nixConfig = {
extra-substituters = [
"https://haras.cachix.org"
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://cuda-maintainers.cachix.org"
"https://comfyui.cachix.org"
"https://cache.numtide.com"
"https://noctalia.cachix.org"
];
extra-trusted-public-keys = [
# cspell:disable
"haras.cachix.org-1:/HIo1JYqOIH1Nwk1EGXhuPPvDW0WekxIbY5CiXUZbYw="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
"comfyui.cachix.org-1:33mf9VzoIjzVbp0zwj+fT51HG0y31ZTK3nzYZAX0rec="
"niks3.numtide.com-1:DTx8wZduET09hRmMtKdQDxNNthLQETkc/yaX7M4qK0g="
"noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4="
# cspell:enable
];
};
}