Compare commits
2 commits
2625578b16
...
6bf41fd880
Author | SHA1 | Date | |
---|---|---|---|
6bf41fd880 | |||
081d8cbe83 |
2 changed files with 9 additions and 7 deletions
|
@ -52,7 +52,7 @@ jobs:
|
||||||
- uses: "https://git.salame.cl/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v4
|
- uses: "https://git.salame.cl/actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" # v4
|
||||||
- run: nix --version
|
- run: nix --version
|
||||||
- name: Create Size Report
|
- 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:
|
with:
|
||||||
# Create a comment on the associated PR
|
# Create a comment on the associated PR
|
||||||
comment-on-pr: ${{ github.ref_name != 'main' }}
|
comment-on-pr: ${{ github.ref_name != 'main' }}
|
||||||
|
|
|
@ -108,8 +108,9 @@ in
|
||||||
return config
|
return config
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
alacritty.settings = {
|
alacritty = {
|
||||||
enable = cfg.terminal == "alacritty";
|
enable = cfg.terminal == "alacritty";
|
||||||
|
settings = {
|
||||||
# hide mouse when typing, this ensures I don't have to move the mouse when it hides text
|
# hide mouse when typing, this ensures I don't have to move the mouse when it hides text
|
||||||
mouse.hide_when_typing = true;
|
mouse.hide_when_typing = true;
|
||||||
# Start zellij when it is enabled
|
# Start zellij when it is enabled
|
||||||
|
@ -117,6 +118,7 @@ in
|
||||||
program = "${lib.getExe config.programs.zellij.package}";
|
program = "${lib.getExe config.programs.zellij.package}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
|
zellij.enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in
|
||||||
# PDF reader
|
# PDF reader
|
||||||
zathura.enable = true;
|
zathura.enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue