nixos/home-manager/fred.nix
Claude d5871cf3a6
shell: black hostname colour, switch to MesloLGS for powerline alignment
- Change hostname text in powerline prompt from white (ffffff) to
  black (000000) on the amber segment
- Switch Ghostty font from JetBrainsMono to MesloLGS Nerd Font for
  better vertical centering in powerline pill segments

https://claude.ai/code/session_01PwAXuaoJx7qD5FhVLsn7Sn
2026-04-09 16:03:45 +00:00

34 lines
807 B
Nix

# settings/fred.nix
{ config, pkgs, lib, ... }:
{
# Define the state version for Home Manager
home.stateVersion = "25.11";
# Packages for user
home.packages = with pkgs; [
#
];
# Allow unfree nix-shell maybe
home.file.".config/nixpkgs/config.nix".text = ''
{ allowUnfree = true; }
'';
# Ghostty config
home.file.".config/ghostty/config".force = true;
home.file.".config/ghostty/config".text = ''
font-family = MesloLGS Nerd Font
font-size = 11
font-thicken = true
theme = dark:Catppuccin Mocha,light:Catppuccin Latte
window-padding-x = 10
window-padding-y = 10
window-padding-balance = true
background-opacity = 0.98
confirm-close-surface = false
gtk-titlebar = false
cursor-style = bar
cursor-style-blink = true
'';
}