alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
update frigate config
author
Sean Aye
date
3 months ago
(Mar 22, 2026, 8:03 PM -0400)
commit
7fca59de
7fca59de8affffc1ceb42ae5f153ff5b51734d73
parent
e730fdd0
e730fdd0530cf6ed83ef05ed2f06b28dec2fae28
change-id
mltrytxl
mltrytxlmxkktkpvzrvqvttpvqvnmrym
+5
-9
1 changed file
Expand all
Collapse all
Unified
Split
hosts
mira
configuration.nix
+5
-9
hosts/mira/configuration.nix
Reviewed
···
182
182
enabled = true;
183
183
retain = {
184
184
days = 7;
185
185
-
mode = "motion"; # Only keep motion events
186
186
-
};
187
187
-
events = {
188
188
-
retain = {
189
189
-
default = 14; # Keep events for 14 days
190
190
-
mode = "active_objects";
191
191
-
};
185
185
+
mode = "active_objects";
192
186
};
193
187
};
194
188
snapshots = {
···
209
203
enabled = true;
210
204
retain = {
211
205
days = 7;
212
212
-
mode = "motion";
206
206
+
mode = "active_objects";
213
207
};
214
208
};
215
209
};
···
218
212
# Home Assistant service
219
213
services.home-assistant = {
220
214
enable = true;
215
215
+
customComponents = with pkgs.home-assistant-custom-components; [
216
216
+
frigate
217
217
+
];
221
218
extraComponents = [
222
219
"esphome"
223
220
"met"
···
233
230
"ibeacon" # Was missing ibeacon_ble module
234
231
"go2rtc" # Camera streaming
235
232
"generic" # Generic camera integration
236
236
-
"frigate" # Frigate NVR integration
237
233
];
238
234
config = {
239
235
homeassistant = {