Run formatter over project. Tidy up laptop packages.

This commit is contained in:
Fern Garden 2025-07-10 18:14:36 +08:00
parent 5b08fb0d7f
commit 091c1562f2
14 changed files with 205 additions and 210 deletions

View file

@ -1,8 +1,12 @@
{ config, pkgs, secrets, ... }:
{
config,
pkgs,
secrets,
...
}: {
# Secrets.
sops = {
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
defaultSopsFile = "${secrets}/sops.yaml";
secrets."firefox_syncserver/sync_master_secret" = {};
};
@ -23,5 +27,5 @@
};
# Open Firefox sync service port.
networking.firewall.allowedTCPPorts = [ 5000 ];
networking.firewall.allowedTCPPorts = [5000];
}