-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
204 lines (169 loc) · 5.87 KB
/
flake.nix
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{
description = "Your new nix config";
inputs = {
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# Home manager
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# NixOS Hardware
hardware.url = "github:nixos/nixos-hardware";
# Haumea
haumea = {
url = "github:nix-community/haumea/v0.2.2";
inputs.nixpkgs.follows = "nixpkgs";
};
# sops-nix
sops-nix.url = "github:Mic92/sops-nix";
nixpak = {
url = "github:nixpak/nixpak";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpak-pkgs.url = "github:nixpak/pkgs";
impermanence.url = "github:nix-community/impermanence";
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
nur.url = "github:nix-community/NUR";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-vscode-extensions.url = "github:nix-community/nix-vscode-extensions";
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.3.0";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-index-database = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-cosmic = {
url = "github:lilyinstarlight/nixos-cosmic";
inputs.nixpkgs.follows = "nixpkgs";
};
microvm.url = "github:astro/microvm.nix";
nil.url = "github:oxalica/nil";
devshell.url = "github:numtide/devshell";
nix-environments.url = "github:nix-community/nix-environments";
terranix.url = "github:terranix/terranix";
minioyster.url = "github:pokon548/MiniOyster";
};
outputs = { self, ... } @ inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = with inputs; [
devshell.flakeModule
./devshell
];
perSystem = { config, inputs', self', lib, system, ... }: {
# make pkgs available to all `perSystem` functions
_module.args.pkgs = inputs'.nixpkgs.legacyPackages;
formatter = config.treefmt.build.wrapper;
packages = {
terraform = inputs.terranix.lib.terranixConfiguration {
inherit system;
modules = [ ./terraform/config.nix ];
};
bootstrap-image = self.nixosConfigurations.bootstrap.config.system.build.diskoImages;
};
};
flake.nixosConfigurations =
let
inherit (inputs.nixpkgs) lib;
in
lib.attrsets.genAttrs
(lib.mapAttrsToList (name: value: name) (builtins.readDir ./prefstore))
(name:
let
pkgsInNix = import inputs.nixpkgs {
system = (inputs.haumea.lib.load
{
src = ./machine/${name};
inputs = {
inherit (inputs.nixpkgs) lib;
};
}).default.nixpkgs.hostPlatform;
overlays = (inputs.haumea.lib.load
{
src = ./nix;
inputs = {
inherit (inputs.nixpkgs) lib;
inherit inputs;
};
}).default.nixpkgs.overlays;
config = (inputs.haumea.lib.load
{
src = ./nix;
inputs = {
inherit (inputs.nixpkgs) lib;
};
}).default.nixpkgs.config;
};
application = inputs.haumea.lib.load
{
src = ./desktop/application;
inputs = {
inherit (inputs.nixpkgs) lib;
pkgs = pkgsInNix;
mkNixPak = inputs.nixpak.lib.nixpak {
inherit (inputs.nixpkgs) lib;
pkgs = pkgsInNix;
};
gui-base = inputs.nixpak-pkgs + "/pkgs/modules/gui-base.nix";
};
};
in
lib.nixosSystem {
specialArgs = { inherit inputs name application; };
modules = [
# Nix
./nix
# Preference Store
./prefstore
(./. + ("/prefstore/" + name))
# Machine Configuration
(./. + ("/machine/" + name))
# trustzone
./trustzone
] ++ (with inputs; [
home-manager.nixosModules.home-manager
impermanence.nixosModules.impermanence
lanzaboote.nixosModules.lanzaboote
(if name == "ritsu" then microvm.nixosModules.microvm else { })
nix-index-database.nixosModules.nix-index
nixos-generators.nixosModules.all-formats
nixos-cosmic.nixosModules.default
disko.nixosModules.disko
sops-nix.nixosModules.sops
nur.nixosModules.nur
minioyster.nixosModules.minioyster
minioyster.nixosModules."prefstore-${name}"
]) ++ builtins.concatLists
(lib.forEach
[
"boot"
"desktop"
"service"
"system"
"user"
]
(x:
(lib.mapAttrsToList
(name: value: ./. + ("/" + toString x + "/" + name))
(builtins.readDir (./. + ("/" + toString x))))
));
});
systems = [ "x86_64-linux" ];
};
}