Files
nix-config/modules/theme.nix
T
2026-05-07 20:48:42 +07:00

28 lines
721 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
темы шрифты обои и тд
*/
{ self, ... }:
let
wallpaper = "/home/${self.user}/Pictures/romashki.jpg";
font = {
mono = "JetBrainsMonoNerdFontMono";
propo = "JetBrainsMonoNerdFontPropo";
# mono = "IBM Plex Mono";
# propo = "IBM Plex Mono";
};
border = {
main = "12";
small = "8";
};
in {
flake = {
inherit font;
inherit wallpaper;
inherit border;
};
}