mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-22 02:02:09 +07:00
21 lines
314 B
Nix
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;
|
|
};
|
|
}
|