19 lines
501 B
Nix
19 lines
501 B
Nix
|
# This definition is used by modules to customize as needed.
|
||
|
{
|
||
|
username = "clo"; # username
|
||
|
name = "chloe caruso";
|
||
|
email = "account@paperclover.net";
|
||
|
timeZone = "America/Los_Angeles";
|
||
|
|
||
|
dotfilesDir = "~/config"; # absolute path of the local repo
|
||
|
|
||
|
# Stylix/Theming
|
||
|
theme = "catppuccin-mocha";
|
||
|
#font
|
||
|
sexuality = "lesbian"; # hyfetch
|
||
|
|
||
|
# Default terminal command. NOTE: ghostty is not installed for you
|
||
|
term = "ghostty"; # preferred $TERMINAL
|
||
|
editor = "nvim"; # preferred $EDITOR
|
||
|
}
|