dotfiles/home-manager/charles.nix

55 lines
1 KiB
Nix
Raw Normal View History

2024-04-04 19:17:34 +00:00
{ config, lib, pkgs, ... }:
{
imports = [ ./common.nix ];
home.username = "dtingley";
home.homeDirectory = "/Users/dtingley";
2024-04-04 20:04:08 +00:00
# Overrides
programs.emacs.package = lib.mkForce pkgs.emacs-macport;
2024-04-05 18:20:54 +00:00
home.packages = with pkgs; [
go
gopls
delve
gotests
gotools
python3
pyright
ruff
shellcheck
];
2024-04-04 20:04:08 +00:00
programs.alacritty = {
enable = true;
settings = {
font = {
normal.family = "Hack Nerd Font Mono";
size = 12.0;
};
colors = {
primary = {
background = "#282828";
foreground = "#ebdbb2";
};
normal = {
black = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
magenta = "#b16286";
cyan = "#689d6a";
white = "#ebdbb2";
};
};
};
};
2024-04-04 19:17:34 +00:00
}