configs/alacritty: initial bits
This commit is contained in:
parent
bc7e9e60b7
commit
890606de70
35
configs/alacritty.nix
Normal file
35
configs/alacritty.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
theme = {
|
||||
colors = {
|
||||
primary = {
|
||||
background = "#ffffea";
|
||||
foreground = "#000000";
|
||||
};
|
||||
};
|
||||
};
|
||||
themeFormat = pkgs.formats.toml { };
|
||||
themeFile = themeFormat.generate "plan9.toml" theme;
|
||||
settings = {
|
||||
import = [
|
||||
"${themeFile}"
|
||||
];
|
||||
|
||||
font = {
|
||||
normal = {
|
||||
family = "Go";
|
||||
style = "Mono";
|
||||
};
|
||||
};
|
||||
};
|
||||
settingsFormat = pkgs.formats.toml { };
|
||||
settingsFile = settingsFormat.generate "alacritty.toml" settings;
|
||||
in
|
||||
{
|
||||
config = {
|
||||
environment.etc = {
|
||||
"alacritty/alacritty.toml".text = builtins.readFile settingsFile;
|
||||
"alacritty/theme.yml".text = builtins.readFile themeFile;
|
||||
};
|
||||
};
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
{ ... }: {
|
||||
imports = [
|
||||
./alacritty.nix
|
||||
./ca.nix
|
||||
./ci.nix
|
||||
./colemak.nix
|
||||
|
@ -102,6 +102,7 @@ with lib; {
|
||||
SSH_AUTH_SOCK = "$HOME/.traygent";
|
||||
};
|
||||
systemPackages = with pkgs; (xinlib.filterList [
|
||||
alacritty
|
||||
bc
|
||||
beyt
|
||||
black
|
||||
|
Loading…
Reference in New Issue
Block a user