Files
NubNix/home-manager/20_alacritty/02_primary-colours.nix
2025-11-13 14:15:48 +00:00

10 lines
374 B
Nix

{ config, pkgs, lib, ... }:
{
home.file.".config/alacritty/02_primary-colours.toml".text = ''
# Primary Colours
[colors.primary]
background = "#282c34"
foreground = "#9cdef2"
'';
}