13 lines
549 B
Nix
13 lines
549 B
Nix
rec {
|
|
username = "fish"; # username
|
|
name = "Julia"; # name/identifier
|
|
email = "fish@fishcat.fish"; # email (used for certain configurations)
|
|
dotfilesDir = "~/config"; # absolute path of the local repo
|
|
theme = "catppuccin-mocha"; # name of theme that stylix will use
|
|
browser = "firefox"; # Default browser; must select one from ./user/app/browser/
|
|
term = "ghostty"; # Default terminal command;
|
|
font = "iosevka"; # Selected font
|
|
editor = "neovim"; # Default editor;
|
|
timeZone = "America/Los_Angeles";
|
|
sexuality = "transgender";
|
|
}
|