Format using alejandra
All checks were successful
/ Build Nix targets (push) Successful in 3m36s

This commit is contained in:
Théo Barnouin 2025-01-23 14:13:19 +01:00
parent 1a25b198ef
commit 781ce2d5e9
24 changed files with 610 additions and 505 deletions

View file

@ -1,8 +1,11 @@
{ config, pkgs, lib, ... }:
let
cfg = config.services.vm_redis;
in
{
config,
pkgs,
lib,
...
}: let
cfg = config.services.vm_redis;
in {
options.services.vm_redis = {
enable = lib.mkEnableOption "Enable minimal config";
};
@ -16,8 +19,8 @@ in
settings = {
protected-mode = "no";
};
};
};
};
networking.firewall.allowedTCPPorts = [ 6379 ];
networking.firewall.allowedTCPPorts = [6379];
};
}