1
Fork 0
satellite/home/adrielus/features/desktop/common/xwallpaper.nix

11 lines
234 B
Nix
Raw Normal View History

{ config, ... }:
let
wallpapers = {
"Catppuccin Latte" = ./wallpapers/wall.png;
"Catppuccin Frappe" = ./wallpapers/nix-catppuccin.png;
};
in
{
home.file.".background-image".source = wallpapers.${config.scheme.scheme};
}