1
Fork 0
satellite/modules/applications/alacritty.nix

24 lines
442 B
Nix
Raw Normal View History

2022-03-10 20:59:18 +01:00
{ pkgs, lib, ... }:
let
theme = pkgs.myThemes.current;
2022-02-07 11:47:03 +01:00
in
{
2022-03-10 20:59:18 +01:00
imports = [
{
# Load theme
home-manager.users.adrielus.programs.alacritty.settings = theme.alacritty.settings;
2022-03-10 20:59:18 +01:00
}
];
2020-04-12 12:45:29 +02:00
home-manager.users.adrielus.programs.alacritty = {
enable = true;
settings = {
2022-03-10 20:59:18 +01:00
window.decorations = "none";
2022-02-07 12:27:36 +01:00
fonts.normal.family = "Nerd Font Source Code Pro";
env = { TERM = "xterm-256color"; };
2020-04-12 12:45:29 +02:00
};
};
}