alacritty config

This commit is contained in:
Sam 2024-06-01 15:55:54 +01:00
parent 7d5e5cd6ca
commit e06d88e7ac
3 changed files with 22 additions and 7 deletions

View File

@ -0,0 +1,20 @@
{ config, pkgs, lib, ... }:
let
user = config.home.username;
in
{
home-manager.users.${user}.programs.alacritty = {
enable = true;
settings = {
window.padding = {
x = 2;
y = 2;
};
shell.program = "${pkgs.zsh}/bin/zsh";
cursor.style = "Beam";
};
};
}

View File

@ -1,10 +1,11 @@
{pkgs, ... }: {
imports = [
./firefox.nix
./alacritty.nix
];
# Global packages for desktop environments
home.packages = [
pkgs.kitty
pkgs.alacritty
pkgs.zathura
pkgs.xfce.thunar
pkgs.wofi

View File

@ -18,12 +18,6 @@
];
home.packages = [
pkgs.alacritty
pkgs.zathura
pkgs.xfce.thunar
];
monitors = [
{
name = "DP-1";