Compare commits

..

3 Commits

Author SHA1 Message Date
Zynh Ludwig 0f3a5ec38e cleaning nil warnings 2024-05-29 19:59:35 -07:00
Zynh Ludwig e4823110b1 alacritty 2024-05-29 19:58:14 -07:00
Zynh Ludwig ab61c51afe add nixpkgs-fmt 2024-05-29 19:58:11 -07:00
2 changed files with 31 additions and 2 deletions

View File

@ -1,9 +1,10 @@
{ config, pkgs, inputs, ... }: { pkgs, inputs, ... }:
{ {
imports = [ imports = [
./home/modules/git.nix ./home/modules/git.nix
./home/modules/fish.nix ./home/modules/fish.nix
./home/modules/alacritty.nix
]; ];
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
@ -22,7 +23,7 @@
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with pkgs; [ home.packages = [
# # Adds the 'hello' command to your environment. It prints a friendly # # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run. # # "Hello, world!" when run.
# pkgs.hello # pkgs.hello
@ -88,6 +89,7 @@
]; ];
extraPackages = with pkgs; [ extraPackages = with pkgs; [
nil nil
nixpkgs-fmt
rustup rustup
lua-language-server lua-language-server
]; ];

View File

@ -0,0 +1,27 @@
{ pkgs, ... }:
{
programs.alacritty = {
enable = true;
settings = {
shell = "${pkgs.fish}/bin/fish";
window = {
opacity = 0.98;
};
font = {
normal = {
family = "JetBrainsMono Nerd Font";
style = "Regular";
};
bold = {
family = "JetBrainsMono Nerd Font";
style = "Bold";
};
italic = {
family = "JetBrainsMono Nerd Font";
style = "Italic";
};
};
};
};
}