n8n webhook fix
This commit is contained in:
parent
7481001aae
commit
11b60a43af
|
@ -17,7 +17,7 @@ in ''
|
||||||
env = WLR_NO_HARDWARE_CURSORS,1
|
env = WLR_NO_HARDWARE_CURSORS,1
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
input {
|
input {
|
||||||
kb_layout = de
|
kb_layout = de,us
|
||||||
kb_variant =
|
kb_variant =
|
||||||
kb_model =
|
kb_model =
|
||||||
kb_rules =
|
kb_rules =
|
||||||
|
@ -147,11 +147,11 @@ in ''
|
||||||
bind = $mainMod SHIFT, e, exec, emacsclient -n -c -e '(package-initialize)'
|
bind = $mainMod SHIFT, e, exec, emacsclient -n -c -e '(package-initialize)'
|
||||||
bind = $mainMod, Escape, exec, wlogout -p layer-shell
|
bind = $mainMod, Escape, exec, wlogout -p layer-shell
|
||||||
bind = $mainMod, Space, togglefloating
|
bind = $mainMod, Space, togglefloating
|
||||||
bind = $mainMod, q, killactive,
|
bind = $mainMod, q, killactive
|
||||||
bind = $mainMod, M, exit,
|
bind = $mainMod, M, exit
|
||||||
bind= $mainMod, F, fullscreen
|
bind = $mainMod, F, fullscreen
|
||||||
bind = $mainMod, E, exec, thunar
|
bind = $mainMod, E, exec, thunar
|
||||||
bind = $mainMod, V, togglefloating,
|
bind = $mainMod, V, togglefloating
|
||||||
bind = $mainMod, D, exec, fuzzel
|
bind = $mainMod, D, exec, fuzzel
|
||||||
bind = $mainMod, P, pseudo, # dwindle
|
bind = $mainMod, P, pseudo, # dwindle
|
||||||
bind = $mainMod, J, togglesplit, # dwindle
|
bind = $mainMod, J, togglesplit, # dwindle
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
env = __NV_PRIME_RENDER_OFFLOAD,1
|
env = __NV_PRIME_RENDER_OFFLOAD,1
|
||||||
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
|
||||||
input {
|
input {
|
||||||
kb_layout = de
|
kb_layout = de,us
|
||||||
kb_variant =
|
kb_variant =
|
||||||
kb_model =
|
kb_model =
|
||||||
kb_rules =
|
kb_rules =
|
||||||
|
@ -35,6 +35,10 @@
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
device:zsa-moonlander {
|
||||||
|
kb_layout = us
|
||||||
|
}
|
||||||
|
|
||||||
general {
|
general {
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
col.active_border = rgb(44475a) rgb(bd93f9) 90deg
|
col.active_border = rgb(44475a) rgb(bd93f9) 90deg
|
||||||
|
|
|
@ -4,8 +4,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
settings = {
|
settings = {
|
||||||
editorBaseUrl = "https://wf.lanakk.com";
|
host = "wf.lanakk.com";
|
||||||
host = "https://wf.lanakk.com";
|
protocol = "https";
|
||||||
|
editorBaseUrl="https://wf.lanakk.com";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services.n8n.serviceConfig = {
|
systemd.services.n8n.serviceConfig = {
|
||||||
|
|
|
@ -117,7 +117,7 @@ in {
|
||||||
i18n.defaultLocale = "de_DE.utf8";
|
i18n.defaultLocale = "de_DE.utf8";
|
||||||
console.keyMap = "de";
|
console.keyMap = "de";
|
||||||
|
|
||||||
environment.systemPackages = [ nvidia-offload neovim ];
|
environment.systemPackages = [ nvidia-offload neovim wally-cli ];
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
experimental-features = nix-command
|
experimental-features = nix-command
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -56,5 +56,6 @@
|
||||||
# high-resolution display
|
# high-resolution display
|
||||||
#hardware.video.hidpi.enable = lib.mkDefault true;
|
#hardware.video.hidpi.enable = lib.mkDefault true;
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
hardware.keyboard.zsa.enable = true;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue