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, ... }: {
|
{pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./alacritty.nix
|
||||||
];
|
];
|
||||||
# Global packages for desktop environments
|
# Global packages for desktop environments
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.kitty
|
pkgs.alacritty
|
||||||
pkgs.zathura
|
pkgs.zathura
|
||||||
pkgs.xfce.thunar
|
pkgs.xfce.thunar
|
||||||
pkgs.wofi
|
pkgs.wofi
|
||||||
|
|
|
@ -18,12 +18,6 @@
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = [
|
|
||||||
pkgs.alacritty
|
|
||||||
pkgs.zathura
|
|
||||||
pkgs.xfce.thunar
|
|
||||||
];
|
|
||||||
|
|
||||||
monitors = [
|
monitors = [
|
||||||
{
|
{
|
||||||
name = "DP-1";
|
name = "DP-1";
|
||||||
|
|
Loading…
Reference in New Issue