update file pattern for sops secrets pre-commit

This commit is contained in:
Joseph Hanson 2024-08-24 12:53:24 -05:00
parent 01229ae62e
commit 14461cf4ac
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 32 additions and 0 deletions

View file

@ -36,3 +36,4 @@ repos:
- id: sops-encryption
# Uncomment to exclude all markdown files from encryption
# exclude: *.\.md
files: .*secrets.*

View file

@ -0,0 +1,31 @@
{ config, pkgs, ... }:
{
sops.secrets.secret-domain-0 = {
sopsFile = ./secret.sops.yaml;
};
users.users.jahanson.extraGroups = [ "incus-admin" ];
virtualisation.incus = {
enable = true;
ui.enable = true;
};
# systemd.services.incus-preseed.postStart = "${oidcSetup}";
networking = {
nftables.enable = true;
firewall = {
allowedTCPPorts = [
8443
53
67
];
allowedUDPPorts = [
53
67
];
};
};
}