Version 0.1.0
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/01_cursors-and-selection-colours.toml".text = ''
|
||||
# ── Cursor & Selection Colours ────────────────────────────────────────────
|
||||
[colors.cursor]
|
||||
cursor = "#528bff"
|
||||
text = "#9cdef2"
|
||||
|
||||
[colors.selection]
|
||||
text = "#9cdef2"
|
||||
background = "#3e4451"
|
||||
'';
|
||||
}
|
||||
10
home-manager/20_alacritty/02_primary-colours.nix
Normal file
10
home-manager/20_alacritty/02_primary-colours.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/02_primary-colours.toml".text = ''
|
||||
# ── Primary Colours ───────────────────────────────────────────────────────
|
||||
[colors.primary]
|
||||
background = "#282c34"
|
||||
foreground = "#9cdef2"
|
||||
'';
|
||||
}
|
||||
16
home-manager/20_alacritty/03_normal-palette-ansi.nix
Normal file
16
home-manager/20_alacritty/03_normal-palette-ansi.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/03_normal-palette-ansi.toml".text = ''
|
||||
# ── Normal Palette (ANSI) ─────────────────────────────────────────────────
|
||||
[colors.normal]
|
||||
black = "#2e3440"
|
||||
red = "#e06c75"
|
||||
green = "#9cdef2"
|
||||
yellow = "#e5c07b"
|
||||
blue = "#61afef"
|
||||
magenta = "#c678dd"
|
||||
cyan = "#9cdef2"
|
||||
white = "#828997"
|
||||
'';
|
||||
}
|
||||
26
home-manager/20_alacritty/04_font-settings.nix
Normal file
26
home-manager/20_alacritty/04_font-settings.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/04_font-settings.toml".text = ''
|
||||
# ── Font Settings ─────────────────────────────────────────────────────────
|
||||
[font]
|
||||
size = 11.0
|
||||
|
||||
[font.normal]
|
||||
family = "Gohu GohuFont"
|
||||
style = "Regular"
|
||||
|
||||
[font.bold]
|
||||
family = "Gohu GohuFont"
|
||||
style = "Bold"
|
||||
|
||||
[font.italic]
|
||||
family = "Gohu GohuFont"
|
||||
style = "Italic"
|
||||
|
||||
[font.bold_italic]
|
||||
family = "Gohu GohuFont"
|
||||
style = "Bold Italic"
|
||||
|
||||
'';
|
||||
}
|
||||
9
home-manager/20_alacritty/05_mouse.nix
Normal file
9
home-manager/20_alacritty/05_mouse.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/05_mouse.toml".text = ''
|
||||
# ── Mouse & Environment ───────────────────────────────────────────────────
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
'';
|
||||
}
|
||||
20
home-manager/20_alacritty/default.nix
Normal file
20
home-manager/20_alacritty/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.file.".config/alacritty/alacritty.toml".text = ''
|
||||
# ──────────────────────────────────────────────────────────────────────────
|
||||
# °˖* ૮( • ᴗ 。)っ🍸 pewdiepie/archdaemon/dionysh shhheersh
|
||||
# Nord-inspired, neon-accent terminal theme
|
||||
# vers. 1.0.0-nix
|
||||
# ──────────────────────────────────────────────────────────────────────────
|
||||
[general]
|
||||
import [
|
||||
"~/.config/alacritty/01_cursors-and-selection-colours.toml"
|
||||
"~/.config/alacritty/02_primary-colours.toml"
|
||||
"~/.config/alacritty/03_normal-palette-ansi.toml"
|
||||
"~/.config/alacritty/04_font-settings.toml"
|
||||
"~/.config/alacritty/05_mouse.toml"
|
||||
]
|
||||
'';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user