chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
3 changed files with 18 additions and 16 deletions
Showing only changes of commit d462b4c9b7 - Show all commits

View file

@ -56,12 +56,14 @@ in {
ms-vscode.cpptools ms-vscode.cpptools
platformio.platformio-ide platformio.platformio-ide
redhat.vscode-yaml redhat.vscode-yaml
redhat.vscode-xml
tamasfe.even-better-toml tamasfe.even-better-toml
valentjn.vscode-ltex valentjn.vscode-ltex
vscodevim.vim vscodevim.vim
vadimcn.vscode-lldb vadimcn.vscode-lldb
xaver.clang-format xaver.clang-format
sumneko.lua sumneko.lua
davidlday.languagetool-linter
]; ];
}; };

View file

@ -7,18 +7,15 @@ let
generate_custom_keybindings = binds: generate_custom_keybindings = binds:
{ {
"org/gnome/settings-daemon/plugins/media-keys" = { "org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = map custom-keybindings = map (name:
(name: "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/${name}/")
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/${name}/")
(attrNames binds); (attrNames binds);
}; };
} // mapAttrs' } // mapAttrs' (name:
(name: nameValuePair
nameValuePair "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/${name}")
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/${name}") binds;
binds; in {
in
{
xdg.mimeApps.enable = true; xdg.mimeApps.enable = true;
xdg.mimeApps.defaultApplications = { xdg.mimeApps.defaultApplications = {
"text/plain" = "org.gnome.TextEditor.desktop"; "text/plain" = "org.gnome.TextEditor.desktop";
@ -100,12 +97,12 @@ in
raise-or-lower = [ "<Super>s" ]; raise-or-lower = [ "<Super>s" ];
switch-applications = [ "<Super>Tab" ]; switch-applications = [ "<Super>Tab" ];
switch-applications-backward = [ "<Super>Tab" ]; switch-applications-backward = [ "<Super>Tab" ];
move-to-workspace-1 = [ "<Shift><Super>exclam" ]; move-to-workspace-1 = [ "<Shift><Super>1" ];
move-to-workspace-2 = [ "<Shift><Super>at" ]; move-to-workspace-2 = [ "<Shift><Super>2" ];
move-to-workspace-3 = [ "<Shift><Super>numbersign" ]; move-to-workspace-3 = [ "<Shift><Super>3" ];
move-to-workspace-4 = [ "<Shift><Super>dollar" ]; move-to-workspace-4 = [ "<Shift><Super>4" ];
move-to-workspace-5 = [ "<Shift><Super>percent" ]; move-to-workspace-5 = [ "<Shift><Super>5" ];
move-to-workspace-6 = [ "<Shift><Super>asciicircum" ]; move-to-workspace-6 = [ "<Shift><Super>6" ];
switch-to-workspace-1 = [ "<Super>1" ]; switch-to-workspace-1 = [ "<Super>1" ];
switch-to-workspace-2 = [ "<Super>2" ]; switch-to-workspace-2 = [ "<Super>2" ];
switch-to-workspace-3 = [ "<Super>3" ]; switch-to-workspace-3 = [ "<Super>3" ];
@ -114,6 +111,7 @@ in
switch-to-workspace-6 = [ "<Super>6" ]; switch-to-workspace-6 = [ "<Super>6" ];
toggle-fullscreen = [ "<Super><Shift>M" ]; toggle-fullscreen = [ "<Super><Shift>M" ];
toggle-maximized = [ "<Super>m" ]; toggle-maximized = [ "<Super>m" ];
close = [ "<Super>Q" ];
}; };
"org/gnome/tweaks" = { show-extensions-notice = false; }; "org/gnome/tweaks" = { show-extensions-notice = false; };

View file

@ -6,12 +6,14 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cachix cachix
clang
direnv direnv
git-crypt git-crypt
nix-update nix-update
pinentry-curses pinentry-curses
ripgrep ripgrep
rsync rsync
rustup
tmux tmux
vault vault
]; ];