Files
nix-config/modules/theme.nix
T
2026-05-10 22:25:04 +07:00

21 lines
314 B
Nix

{ self, ... }:
let
wallpaper = "/home/${self.user}/Pictures/romashki.jpg";
font = {
mono = "JetBrainsMonoNerdFontMono";
propo = "JetBrainsMonoNerdFontPropo";
};
border = {
main = "12";
small = "8";
};
in {
flake = {
inherit font;
inherit wallpaper;
inherit border;
};
}