-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
73 lines (51 loc) · 2.17 KB
/
Copy pathflake.nix
File metadata and controls
73 lines (51 loc) · 2.17 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
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-darwin.url = "github:nix-darwin/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-barutsrb-tap = {
url = "github:BarutSRB/homebrew-tap";
flake = false;
};
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
niri.url = "github:sodiboo/niri-flake";
niri.inputs.nixpkgs.follows = "nixpkgs";
niri-scratchpad.url = "github:gvolpe/niri-scratchpad";
niri-scratchpad.inputs.nixpkgs.follows = "nixpkgs";
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
tree-sitter.url = "github:tree-sitter/tree-sitter";
tree-sitter.inputs.nixpkgs.follows = "nixpkgs";
opencode.url = "github:sst/opencode";
helium.url = "github:schembriaiden/helium-browser-nix-flake";
helium.inputs.nixpkgs.follows = "nixpkgs";
vicinae.url = "github:vicinaehq/vicinae";
stylix.url = "github:nix-community/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
zjstatus.url = "github:dj95/zjstatus";
devenv.url = "github:cachix/devenv";
devenv.inputs.nixpkgs.follows = "nixpkgs";
sqlit.url = "github:maxteabag/sqlit";
sqlit.inputs.nixpkgs.follows = "nixpkgs";
dms.url = "github:AvengeMedia/DankMaterialShell/stable";
dms.inputs.nixpkgs.follows = "nixpkgs";
dms-plugin-registry.url = "github:AvengeMedia/dms-plugin-registry";
dgop.url = "github:AvengeMedia/dgop";
dgop.inputs.nixpkgs.follows = "nixpkgs";
matugen.url = "github:/InioX/Matugen";
proton-cachyos.url = "github:powerofthe69/proton-cachyos-nix";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
}