the great update

This commit is contained in:
2025-03-07 17:04:41 +09:00
parent 442f46f622
commit 6216fcd751
77 changed files with 732 additions and 305 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
let
alacrittyconf = pkgs.writeText "alacritty.toml" ''
[window]
opacity = 0.85
'';
in
pkgs.symlinkJoin {
name = "alacritty-wrapped";
paths = [ pkgs.alacritty ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/alacritty --add-flags "--config-file ${alacrittyconf}"
'';
}