-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
125 lines (114 loc) · 3.76 KB
/
flake.nix
File metadata and controls
125 lines (114 loc) · 3.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
description = "Philo's nix-darwin and Home Manager Configuration";
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
"https://vicinae.cachix.org"
];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"vicinae.cachix.org-1:1kDrfienkGHPYbkpNj1mWTr7Fm1+zcenzgTizIcI3oc="
];
};
inputs = {
fh.url = "https://flakehub.com/f/DeterminateSystems/fh/*";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
den.url = "github:denful/den";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-latest.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-prev.url = "github:nixos/nixpkgs/d6c71932130818840fc8fe9509cf50be8c64634f";
nix-darwin.url = "github:LnL7/nix-darwin/master";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew";
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-bundle = {
url = "github:homebrew/homebrew-bundle";
flake = false;
};
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
blink-cmp = {
url = "github:saghen/blink.cmp";
inputs.nixpkgs.follows = "nixpkgs";
};
my-nixvim-config = {
url = "github:codeboyphilo/nixvim-config";
# # url = "path:/Users/phil_oh/.config/nixvim";
# url = "path:/home/phil_oh/.config/nixvim"; # local path for testing
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixvim.follows = "nixvim";
inputs.blink-cmp.follows = "blink-cmp";
};
my-minimal-nixvim-config = {
url = "github:codeboyphilo/nixvim-config/minimal";
# url = "path:/Users/phil_oh/.config/nixvim";
# url = "path:/home/phil_oh/.config/nixvim"; # local path for testing
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixvim.follows = "nixvim";
inputs.blink-cmp.follows = "blink-cmp";
};
sops-nix.url = "github:Mic92/sops-nix";
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
stylix = {
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-colors.url = "github:misterio77/nix-colors";
caelestia-shell = {
url = "github:caelestia-dots/shell";
inputs.nixpkgs.follows = "nixpkgs";
};
dgop = {
url = "github:AvengeMedia/dgop";
inputs.nixpkgs.follows = "nixpkgs";
};
phira = {
url = "github:phira-ai/Phira";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
dankMaterialShell = {
url = "github:AvengeMedia/DankMaterialShell/stable";
inputs.nixpkgs.follows = "nixpkgs";
};
niri = {
url = "github:sodiboo/niri-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
mango = {
url = "github:mangowm/mango";
inputs.nixpkgs.follows = "nixpkgs";
};
vicinae.url = "github:vicinaehq/vicinae";
vicinae-extensions = {
url = "github:vicinaehq/extensions";
};
gittype = {
url = "github:unhappychoice/gittype";
inputs.nixpkgs.follows = "nixpkgs";
};
openplot = {
url = "github:phira-ai/OpenPlot";
inputs.nixpkgs.follows = "nixpkgs";
};
pix = {
url = "path:/home/phil_oh/Projects/Creations/Pix";
};
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
}