From 1ab982eaf3d87c9e724f5efcb4d0d59af9384876 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Sun, 12 Jan 2025 01:32:42 -0300 Subject: [PATCH 1/4] chore: update hydractify-bot's flake --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index db26a91..7abad86 100644 --- a/flake.lock +++ b/flake.lock @@ -134,11 +134,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1736252359, - "narHash": "sha256-zbYyO3Litc2PBqcgJGaRyp6nJpy/Zx3f3ucJC312rRE=", + "lastModified": 1736510643, + "narHash": "sha256-z6qvPOIr4Rl4wA6U5g8Aj3npdeTNiR3AXFIOy7e2IJs=", "owner": "hydractify", "repo": "hydractify-bot", - "rev": "b8b2de9252fdbdea688f85d621b0782a6936efe6", + "rev": "69759c7adcb2102dbb8d3e8a657dc5a47686dc46", "type": "github" }, "original": { From 53851d4c9fe91bd8ea8692b147f414d503936ac2 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Sun, 12 Jan 2025 01:32:53 -0300 Subject: [PATCH 2/4] fix(forgejo): remove vulnerability --- specific/desktop/services/forgejo.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/specific/desktop/services/forgejo.nix b/specific/desktop/services/forgejo.nix index bcfbaa8..db98115 100644 --- a/specific/desktop/services/forgejo.nix +++ b/specific/desktop/services/forgejo.nix @@ -20,8 +20,6 @@ service = { DISABLE_REGISTRATION = true; - ENABLE_REVERSE_PROXY_AUTHENTICATION = true; - ENABLE_REVERSE_PROXY_AUTHENTICATION_API = true; }; }; }; From 96553b16d5c223d7d40f7a83d5a1f4e07fe78169 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Sun, 12 Jan 2025 01:33:27 -0300 Subject: [PATCH 3/4] chore(neovim): remove blink-cmp Isn't cutting it, but it's damn fast --- modules/home-manager/programs/neovim/lua/community.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/home-manager/programs/neovim/lua/community.lua b/modules/home-manager/programs/neovim/lua/community.lua index 5cbb4fa..0afc97f 100644 --- a/modules/home-manager/programs/neovim/lua/community.lua +++ b/modules/home-manager/programs/neovim/lua/community.lua @@ -12,8 +12,6 @@ return { { import = "astrocommunity.editing-support.todo-comments-nvim" }, { import = "astrocommunity.editing-support.zen-mode-nvim" }, - { import = "astrocommunity.completion.blink-cmp" }, - { import = "astrocommunity.motion.flash-nvim" }, { import = "astrocommunity.motion.flit-nvim" }, { import = "astrocommunity.motion.leap-nvim" }, From 4b2e262cdf238835aacf62cec3881869ec8ffe26 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Sun, 12 Jan 2025 01:33:46 -0300 Subject: [PATCH 4/4] fix(nixos/system): remove unnecessary sessionVariable --- modules/nixos/system.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index d978b46..d70060d 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -34,12 +34,6 @@ # Enable networking networking.networkmanager.enable = true; - # Define variables that will be initialized in PAM. - environment.sessionVariables = { - # Set env for Fcitx5 - QMODIFIERS = "@im=fcitx5"; - }; - # Set fish as the default shell for all users. users.defaultUserShell = pkgs.fish;