-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
108 lines (85 loc) · 2.49 KB
/
flake.nix
File metadata and controls
108 lines (85 loc) · 2.49 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
{
description = "ominit/dotfiles";
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
imports = [
./libEx # extra lib
./hosts # entrypoint for hosts config
./parts # flake-related configurations
];
};
inputs = {
#
# nix flake tools
#
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-ominit.url = "github:ominit/nixpkgs/master";
nixos-hardware.url = "github:nixos/nixos-hardware";
nixos-wsl = {
url = "github:nix-community/nixos-wsl";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
hjem = {
url = "github:feel-co/hjem";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# kept out of respect for the project.
# chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
disko.url = "github:nix-community/disko";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
#
# programs
#
helium = {
url = "github:ominit/helium-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.treefmt-nix.follows = "treefmt-nix";
inputs.flake-parts.follows = "flake-parts";
};
helix = {
url = "github:helix-editor/helix";
inputs.nixpkgs.follows = "nixpkgs";
};
# don't follow nixpkgs for binary cache
# hyprland.url = "git+https://github.com/hyprwm/hyprland?submodules=1";
jujutsu.url = "github:jj-vcs/jj";
jujutsu.inputs.nixpkgs.follows = "nixpkgs";
niri = {
url = "github:yalter/niri";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
url = "github:noctalia-dev/noctalia-shell";
inputs.nixpkgs.follows = "nixpkgs";
};
# quickshell = {
# url = "git+https://git.outfoxxed.me/quickshell/quickshell";
# inputs.nixpkgs.follows = "nixpkgs";
# };
watt = {
url = "github:NotAShelf/watt";
inputs.nixpkgs.follows = "nixpkgs";
};
# zed = {
# url = "github:zed-industries/zed";
# inputs.nixpkgs.follows = "nixpkgs";
# };
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}