Run formatter
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
{...}:
|
||||
{
|
||||
{...}: {
|
||||
services.fail2ban = {
|
||||
enable = true;
|
||||
maxretry = 5;
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
appName = "The Broccoli Patch"; # Give the site a name
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
{
|
||||
...
|
||||
}: {
|
||||
{...}: {
|
||||
services.golink = {
|
||||
enable = true;
|
||||
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
{config, ...}: {
|
||||
virtualisation.oci-containers = {
|
||||
backend = "docker";
|
||||
containers = {
|
||||
"livebook" = {
|
||||
image = "ghcr.io/livebook-dev/livebook";
|
||||
ports = [ "8080:8080" "8081:8081" ];
|
||||
volumes = [ "/home/daniel/livebook/data:/data" ];
|
||||
ports = ["8080:8080" "8081:8081"];
|
||||
volumes = ["/home/daniel/livebook/data:/data"];
|
||||
user = "${toString config.users.users."daniel".uid}:${toString config.users.groups."users".gid}";
|
||||
environmentFiles = [ "/home/daniel/.livebook_env" ];
|
||||
environmentFiles = ["/home/daniel/.livebook_env"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user