alacritty config file

This commit is contained in:
Grimmauld 2024-09-09 10:32:50 +02:00
parent 294b33e5ae
commit 967f556eac
Signed by: Grimmauld
GPG Key ID: C2946668769F91FB
4 changed files with 21 additions and 4 deletions

View File

@ -39,7 +39,7 @@ in
};
};
programs.the-honkers-railway-launcher.enable = true;
programs.honkers-railway-launcher.enable = true;
services.udev.packages = [ pkgs.wooting-udev-rules ];

View File

@ -0,0 +1,8 @@
[font]
# Point size
size=16.0
normal = { family="Noto Sans Mono" }
[window]
opacity=0.85

View File

@ -33,6 +33,16 @@ let
"blender.desktop"
];
tex_editors = [ ] ++ text_editors;
alacritty_pkg = pkgs.symlinkJoin {
name = "alacritty";
paths = [ pkgs.alacritty ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/alacritty \
--add-flags "--config-file ${./alacritty.toml}"
'';
};
in
{
config = lib.mkIf (enable && portals && graphical) {
@ -41,7 +51,7 @@ in
zathura
gnome-console
alacritty
alacritty_pkg
imhex
libreoffice-qt
filezilla

View File

@ -7,8 +7,7 @@
./../../sway
];
age.identityPaths = [ "/home/grimmauld/.ssh/id_ed25519" ];
age.identityPaths = [ "/root/.ssh/id_ed25519" ];
services.zfs.trim.enable = true;
boot.supportedFilesystems.zfs = true;