14 lines
554 B
Nix
14 lines
554 B
Nix
|
rec {
|
||
|
username = "nmarks"; # username
|
||
|
name = "Natalie"; # name/identifier
|
||
|
email = "nmarks413@gmail.com"; # email (used for certain configurations)
|
||
|
dotfilesDir = "~/.dotfiles"; # 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 = "bisexual";
|
||
|
}
|