22 lines
513 B
Nix
22 lines
513 B
Nix
# ABOUTME: Shared configuration values for desktop environment
|
|
# ABOUTME: Centralizes user info, theme, fonts, and display settings
|
|
|
|
{
|
|
user = {
|
|
fullName = "Petru Paler";
|
|
email = "petru@paler.net";
|
|
};
|
|
|
|
theme = "tokyo-night";
|
|
base16Theme = "tokyo-night-dark";
|
|
|
|
primaryFont = "Liberation Sans 11";
|
|
monoFont = "CaskaydiaMono Nerd Font";
|
|
|
|
scale = 1.5;
|
|
monitors = [ "DP-1,preferred,auto,1.5" ];
|
|
|
|
# Wallpaper for tokyo-night theme
|
|
wallpaper = "1-Pawel-Czerwinski-Abstract-Purple-Blue.jpg";
|
|
}
|