dotfiles/hm/desktop/background/default.nix

15 lines
275 B
Nix
Raw Normal View History

2024-12-15 00:29:51 +01:00
{
pkgs,
config,
lib,
...
}:
2024-01-15 19:26:44 +01:00
{
config = {
2024-01-15 19:26:44 +01:00
# This correctly sets the background on some occasions, below does the rest
programs.autorandr.hooks.postswitch = {
background = "${pkgs.feh}/bin/feh --no-fehbg --bg-fill ${config.stylix.image}";
};
};
}