15247fa82d
- Use base16 colors for xmonad - No more useless fish base16 theming - Different wallpapers for each theme
11 lines
234 B
Nix
11 lines
234 B
Nix
{ config, ... }:
|
|
let
|
|
wallpapers = {
|
|
"Catppuccin Latte" = ./wallpapers/wall.png;
|
|
"Catppuccin Frappe" = ./wallpapers/nix-catppuccin.png;
|
|
};
|
|
in
|
|
{
|
|
home.file.".background-image".source = wallpapers.${config.scheme.scheme};
|
|
}
|