alacritty config file
This commit is contained in:
parent
294b33e5ae
commit
967f556eac
@ -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 ];
|
||||
|
||||
|
8
common/xdg/alacritty.toml
Normal file
8
common/xdg/alacritty.toml
Normal file
@ -0,0 +1,8 @@
|
||||
[font]
|
||||
# Point size
|
||||
size=16.0
|
||||
normal = { family="Noto Sans Mono" }
|
||||
|
||||
[window]
|
||||
opacity=0.85
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user