diff --git a/flake.lock b/flake.lock index 7abad86..db26a91 100644 --- a/flake.lock +++ b/flake.lock @@ -134,11 +134,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1736510643, - "narHash": "sha256-z6qvPOIr4Rl4wA6U5g8Aj3npdeTNiR3AXFIOy7e2IJs=", + "lastModified": 1736252359, + "narHash": "sha256-zbYyO3Litc2PBqcgJGaRyp6nJpy/Zx3f3ucJC312rRE=", "owner": "hydractify", "repo": "hydractify-bot", - "rev": "69759c7adcb2102dbb8d3e8a657dc5a47686dc46", + "rev": "b8b2de9252fdbdea688f85d621b0782a6936efe6", "type": "github" }, "original": { diff --git a/modules/home-manager/programs/neovim/lua/community.lua b/modules/home-manager/programs/neovim/lua/community.lua index 0afc97f..5cbb4fa 100644 --- a/modules/home-manager/programs/neovim/lua/community.lua +++ b/modules/home-manager/programs/neovim/lua/community.lua @@ -12,6 +12,8 @@ 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" }, diff --git a/modules/nixos/system.nix b/modules/nixos/system.nix index d70060d..d978b46 100644 --- a/modules/nixos/system.nix +++ b/modules/nixos/system.nix @@ -34,6 +34,12 @@ # 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; diff --git a/specific/desktop/services/forgejo.nix b/specific/desktop/services/forgejo.nix index db98115..bcfbaa8 100644 --- a/specific/desktop/services/forgejo.nix +++ b/specific/desktop/services/forgejo.nix @@ -20,6 +20,8 @@ service = { DISABLE_REGISTRATION = true; + ENABLE_REVERSE_PROXY_AUTHENTICATION = true; + ENABLE_REVERSE_PROXY_AUTHENTICATION_API = true; }; }; };