updated alacritty config

This commit is contained in:
specCon18 2023-08-15 02:45:13 -04:00
parent 2cf51b1578
commit 29f24dabfc
4 changed files with 12 additions and 3 deletions

View file

@ -76,7 +76,7 @@
] #extra modules to load ] #extra modules to load
[ [
hyprland.homeManagerModules.default # hyprland.homeManagerModules.default
# ./modules/home-manager/hyprland.nix # ./modules/home-manager/hyprland.nix
./modules/home-manager/helix.nix ./modules/home-manager/helix.nix
./modules/home-manager/alacritty.nix ./modules/home-manager/alacritty.nix

View file

@ -1,6 +1,7 @@
{ modulesPath, config, pkgs, lib, self, ... }: { modulesPath, config, pkgs, lib, self, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
nerdfonts
pkg-config pkg-config
ripgrep ripgrep
openssl openssl

View file

@ -8,8 +8,8 @@
columns = 120; columns = 120;
lines = 25; lines = 25;
}; };
decorations = "full"; decorations = "none";
opacity = 0.9; opacity = 0.8;
title = "Alacritty"; title = "Alacritty";
}; };
font = { font = {

View file

@ -0,0 +1,8 @@
{ modulesPath, config, pkgs, lib, self, ... }:
{
environment.systemPackages = with pkgs; [
# powertop
# tlp
];
}