alacritty config
This commit is contained in:
parent
7d5e5cd6ca
commit
e06d88e7ac
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -18,12 +18,6 @@
|
|||
|
||||
];
|
||||
|
||||
home.packages = [
|
||||
pkgs.alacritty
|
||||
pkgs.zathura
|
||||
pkgs.xfce.thunar
|
||||
];
|
||||
|
||||
monitors = [
|
||||
{
|
||||
name = "DP-1";
|
||||
|
|
Loading…
Reference in New Issue