-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
95 lines (72 loc) · 3.27 KB
/
flake.nix
File metadata and controls
95 lines (72 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
clan-core.url = "https://git.clan.lol/clan/clan-core/archive/main.tar.gz";
clan-core.inputs.nixpkgs.follows = "nixpkgs";
clan-core.inputs.flake-parts.follows = "flake-parts";
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
jovian.inputs.nixpkgs.follows = "nixpkgs";
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
noctalia-shell.url = "github:noctalia-dev/noctalia-shell";
noctalia-shell.inputs.nixpkgs.follows = "nixpkgs";
nixvim.url = "github:nix-community/nixvim";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
nixvim.inputs.flake-parts.follows = "flake-parts";
buildbot-nix.url = "github:nix-community/buildbot-nix";
buildbot-nix.inputs.flake-parts.follows = "flake-parts";
harmonia.url = "github:nix-community/harmonia";
harmonia.inputs.nixpkgs.follows = "nixpkgs";
terranix.url = "github:terranix/terranix";
terranix.inputs.flake-parts.follows = "flake-parts";
terranix.inputs.nixpkgs.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
#llm-agents.url = "github:adeci/llm-agents.nix?ref=adeci";
llm-agents.url = "github:numtide/llm-agents.nix";
llm-agents.inputs.nixpkgs.follows = "nixpkgs";
llm-agents.inputs.flake-parts.follows = "flake-parts";
llm-agents.inputs.treefmt-nix.follows = "treefmt-nix";
mics-skills.url = "github:Mic92/mics-skills";
mics-skills.inputs.nixpkgs.follows = "nixpkgs";
mics-skills.inputs.treefmt-nix.follows = "treefmt-nix";
opencrow.url = "github:pinpox/opencrow";
opencrow.inputs.nixpkgs.follows = "nixpkgs";
opencrow.inputs.treefmt-nix.follows = "treefmt-nix";
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
wrapper-modules.inputs.nixpkgs.follows = "nixpkgs";
sdwire-cli.url = "github:Badger-Embedded/sdwire-cli";
sdwire-cli.inputs.nixpkgs.follows = "nixpkgs";
grub2-themes.url = "github:vinceliuice/grub2-themes";
grub2-themes.inputs.nixpkgs.follows = "nixpkgs";
# https://github.com/niri-wm/niri/pull/3474
niri.url = "github:adeci/niri?ref=window-rule-on-output";
niri.inputs.nixpkgs.follows = "nixpkgs";
devblog.url = "github:adeci/devblog";
devblog.inputs.nixpkgs.follows = "nixpkgs";
devblog.inputs.flake-parts.follows = "flake-parts";
# aarch64/x86_64-linux remote-builder VM via Virtualization.framework (Rosetta 2 passthrough)
nix-rosetta-builder.url = "github:cpick/nix-rosetta-builder";
nix-rosetta-builder.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
imports = [
inputs.clan-core.flakeModules.default
inputs.treefmt-nix.flakeModule
./modules/flake-parts/flake-module.nix
];
# debug mode in repl
debug = builtins ? currentSystem;
};
}