Switch to managing alacritty with home-manager
This commit is contained in:
parent
21c05b9e65
commit
4661f8542e
3 changed files with 54 additions and 4 deletions
|
@ -58,11 +58,8 @@
|
||||||
slurp
|
slurp
|
||||||
rofi
|
rofi
|
||||||
rofi-emoji
|
rofi-emoji
|
||||||
kitty
|
|
||||||
mako
|
mako
|
||||||
sway-contrib.grimshot
|
sway-contrib.grimshot
|
||||||
i3status
|
|
||||||
alacritty
|
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ];
|
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ../profiles/alacritty ];
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
|
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
|
||||||
|
|
53
users/profiles/alacritty/default.nix
Normal file
53
users/profiles/alacritty/default.nix
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
window = {
|
||||||
|
padding = {
|
||||||
|
x = 6;
|
||||||
|
y = 6;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
font = {
|
||||||
|
normal = {
|
||||||
|
family = "JetBrainsMono Nerd Font";
|
||||||
|
};
|
||||||
|
size = 12;
|
||||||
|
};
|
||||||
|
colors = {
|
||||||
|
primary = {
|
||||||
|
background = "#161821";
|
||||||
|
foreground = "#d2d4de";
|
||||||
|
};
|
||||||
|
normal = {
|
||||||
|
black = "#161821";
|
||||||
|
red = "#e27878";
|
||||||
|
green = "#b4be82";
|
||||||
|
yellow = "#e2a478";
|
||||||
|
blue = "#84a0c6";
|
||||||
|
magenta = "#a093c7";
|
||||||
|
cyan = "#89b8c2";
|
||||||
|
white = "#c6c8d1";
|
||||||
|
};
|
||||||
|
bright = {
|
||||||
|
black = "#6b7089";
|
||||||
|
red = "#e98989";
|
||||||
|
green = "#c0ca8e";
|
||||||
|
yellow = "#e9b189";
|
||||||
|
blue = "#91acd1";
|
||||||
|
magenta = "#ada0d3";
|
||||||
|
cyan = "#95c4ce";
|
||||||
|
white = "#d2d4de";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
cursor = {
|
||||||
|
style = "Block";
|
||||||
|
blinking = "On";
|
||||||
|
};
|
||||||
|
live_config_reload = false;
|
||||||
|
mouse = {
|
||||||
|
hide_when_typing = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue