+zoxide
This commit is contained in:
parent
4840a49f58
commit
0238155824
|
@ -7,10 +7,15 @@
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
];
|
];
|
||||||
programs.autojump = {
|
programs.zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
|
programs.fzf = {
|
||||||
|
enable = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
tmux.enableShellIntegration = true;
|
||||||
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
bc
|
bc
|
||||||
busybox
|
busybox
|
||||||
|
@ -21,6 +26,7 @@
|
||||||
htop
|
htop
|
||||||
httpie
|
httpie
|
||||||
jq
|
jq
|
||||||
|
neovim
|
||||||
procs
|
procs
|
||||||
progress
|
progress
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
|
@ -14,7 +14,10 @@ in {
|
||||||
shortcut = "a";
|
shortcut = "a";
|
||||||
keyMode = "vi";
|
keyMode = "vi";
|
||||||
clock24 = true;
|
clock24 = true;
|
||||||
|
plugins = with pkgs.tmuxPlugins; [ sensible yank ];
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
||||||
|
set-option -sa terminal-overrides ",xterm*:Tc"
|
||||||
# Enable mouse mode (tmux 2.1 and above)
|
# Enable mouse mode (tmux 2.1 and above)
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
|
@ -24,7 +27,6 @@ in {
|
||||||
unbind '"'
|
unbind '"'
|
||||||
unbind %
|
unbind %
|
||||||
|
|
||||||
# change status bar color
|
|
||||||
bind-key r source-file ~/.tmux.conf \; display-message "Konfiguration neu geladen"
|
bind-key r source-file ~/.tmux.conf \; display-message "Konfiguration neu geladen"
|
||||||
|
|
||||||
# status bar theme
|
# status bar theme
|
||||||
|
|
|
@ -57,7 +57,6 @@
|
||||||
fuzzel
|
fuzzel
|
||||||
gnome.file-roller
|
gnome.file-roller
|
||||||
gnome.nautilus
|
gnome.nautilus
|
||||||
gnome.nautilus
|
|
||||||
gnome.seahorse
|
gnome.seahorse
|
||||||
gnome.sushi
|
gnome.sushi
|
||||||
gnome.vinagre
|
gnome.vinagre
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
./briefkasten.nix
|
./briefkasten.nix
|
||||||
./little-link.nix
|
./little-link.nix
|
||||||
./matomo.nix
|
./matomo.nix
|
||||||
|
./mautic.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./wordpress.nix
|
./wordpress.nix
|
||||||
|
|
|
@ -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" ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -207,8 +207,7 @@
|
||||||
certResolver = "godaddy";
|
certResolver = "godaddy";
|
||||||
domains = "ma.lanakk.com";
|
domains = "ma.lanakk.com";
|
||||||
};
|
};
|
||||||
service = "adguard";
|
service = "mautic";
|
||||||
middlewares = "auth";
|
|
||||||
entrypoints = "websecure";
|
entrypoints = "websecure";
|
||||||
};
|
};
|
||||||
briefkasten = {
|
briefkasten = {
|
||||||
|
|
Loading…
Reference in New Issue