From 081d8cbe8364d00a67370896581e36da8f7ce08c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 11 Mar 2025 00:00:12 +0100 Subject: [PATCH 1/2] chore(deps): update jalil/nix-flake-outputs-size digest to 5c40a31 --- .forgejo/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml index 7220500..adddf31 100644 --- a/.forgejo/workflows/check.yml +++ b/.forgejo/workflows/check.yml @@ -52,7 +52,7 @@ jobs: - uses: "https://git.salame.cl/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v4 - run: nix --version - name: Create Size Report - uses: "https://git.salame.cl/jalil/nix-flake-outputs-size@73142cfab8b4f577c48a8b3041a451ab12204790" # main + uses: "https://git.salame.cl/jalil/nix-flake-outputs-size@5c40a31e3e2ed0ea28f8ba68deca41d05fdf2e71" # main with: # Create a comment on the associated PR comment-on-pr: ${{ github.ref_name != 'main' }} From 6bf41fd8808d2c29eb15b4b723bc241887f1ae18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 11 Mar 2025 00:00:05 +0100 Subject: [PATCH 2/2] fix: accidentally uninstalled alacritty --- home/gui/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/home/gui/default.nix b/home/gui/default.nix index 824fb99..10948b2 100644 --- a/home/gui/default.nix +++ b/home/gui/default.nix @@ -108,13 +108,15 @@ in return config ''; }; - alacritty.settings = { + alacritty = { enable = cfg.terminal == "alacritty"; - # hide mouse when typing, this ensures I don't have to move the mouse when it hides text - mouse.hide_when_typing = true; - # Start zellij when it is enabled - terminal.shell = lib.mkIf (config.jhome.dev.enable && config.programs.zellij.enable) { - program = "${lib.getExe config.programs.zellij.package}"; + settings = { + # hide mouse when typing, this ensures I don't have to move the mouse when it hides text + mouse.hide_when_typing = true; + # Start zellij when it is enabled + terminal.shell = lib.mkIf (config.jhome.dev.enable && config.programs.zellij.enable) { + program = "${lib.getExe config.programs.zellij.package}"; + }; }; }; zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in