This commit is contained in:
m3tam3re 2023-04-26 06:43:46 +02:00
parent 4840a49f58
commit 0238155824
6 changed files with 63 additions and 40 deletions

View File

@ -7,10 +7,15 @@
./starship.nix
./tmux.nix
];
programs.autojump = {
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
programs.fzf = {
enable = true;
enableFishIntegration = true;
tmux.enableShellIntegration = true;
};
home.packages = with pkgs; [
bc
busybox
@ -21,6 +26,7 @@
htop
httpie
jq
neovim
procs
progress
ripgrep

View File

@ -14,7 +14,10 @@ in {
shortcut = "a";
keyMode = "vi";
clock24 = true;
plugins = with pkgs.tmuxPlugins; [ sensible yank ];
extraConfig = ''
set-option -sa terminal-overrides ",xterm*:Tc"
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
@ -24,7 +27,6 @@ in {
unbind '"'
unbind %
# change status bar color
bind-key r source-file ~/.tmux.conf \; display-message "Konfiguration neu geladen"
# status bar theme

View File

@ -57,7 +57,6 @@
fuzzel
gnome.file-roller
gnome.nautilus
gnome.nautilus
gnome.seahorse
gnome.sushi
gnome.vinagre

View File

@ -4,6 +4,7 @@
./briefkasten.nix
./little-link.nix
./matomo.nix
./mautic.nix
./nextcloud.nix
./nginx.nix
./wordpress.nix

View File

@ -0,0 +1,16 @@
{ config, outputs, ... }: {
virtualisation.oci-containers.containers."mautic" = {
image = "docker.io/mautic/mautic:v4-apache";
environment = {
MAUTIC_DB_HOST = "mysql";
MAUTIC_DB_USER = "mautic";
MAUTIC_DB_PASSWORD = "mautic";
MAUTIC_DB_DBNAME = "mautic";
PHP_MEMORY_LIMIT="2048M";
MAUTIC_RUN_CRON_JOBS="true";
};
ports = [ "3008:80" ];
volumes = [ "mautic_data:/var/www/html" ];
extraOptions = [ "--add-host=mysql:10.88.0.1" "--ip=10.88.0.23" ];
};
}

View File

@ -207,8 +207,7 @@
certResolver = "godaddy";
domains = "ma.lanakk.com";
};
service = "adguard";
middlewares = "auth";
service = "mautic";
entrypoints = "websecure";
};
briefkasten = {