-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
125 lines (101 loc) · 3.12 KB
/
flake.nix
File metadata and controls
125 lines (101 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
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 = "A dendritic clan configuration with flake-parts";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
"nixpkgs-unstable".url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercules-ci/flake-parts";
};
clan-core = {
url = "git+https://git.clan.lol/clan/clan-core";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
import-tree.url = "github:vic/import-tree";
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland = {
url = "github:hyprwm/Hyprland/v0.50.0?submodules=1";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
hyprnstack = {
url = "github:perstarkse/hyprNStack";
inputs.hyprland.follows = "hyprland";
};
hy3 = {
url = "github:outfoxxed/hy3?ref=hl0.50.0";
inputs.hyprland.follows = "hyprland";
};
niri = {
url = "github:perstarkse/niri";
inputs.nixpkgs.follows = "nixpkgs";
};
private-infra = {
url = "git+ssh://git@github.com/perstarkse/private-infra.git";
inputs.nixpkgs.follows = "nixpkgs";
inputs."nixpkgs-stable".follows = "nixpkgs";
inputs."simple-nixos-mailserver".inputs.nixpkgs.follows = "nixpkgs";
};
minne = {
url = "github:perstarkse/minne";
};
saas-minne = {
url = "git+ssh://git@github.com/perstarkse/saas-minne.git?ref=main&submodules=1";
};
NixVirt = {
url = "https://flakehub.com/f/AshleyYakeley/NixVirt/*.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
vars-helper = {
url = "github:perstarkse/clan-vars-helper";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
sway-focus-flash = {
url = "github:perstarkse/sway-focus-flash";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-minecraft = {
url = "github:Infinidoge/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nous = {
url = "git+ssh://git@github.com/perstarkse/nous.git";
};
politikerstod = {
url = "git+ssh://git@github.com/perstarkse/politikerstod.git";
};
wol-web-proxy = {
url = "git+ssh://git@github.com/perstarkse/wol-web-proxy.git";
inputs.nixpkgs.follows = "nixpkgs";
};
vpn-confinement = {
url = "github:Maroka-chan/VPN-Confinement";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
./flake/parts/core.nix
./flake/parts/clan.nix
./flake/parts/per-system.nix
];
};
}