stylix/modules/feh.nix

13 lines
403 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
2020-12-21 14:12:04 +00:00
{
options.stylix.targets.feh.enable =
config.lib.stylix.mkEnableTarget
"the desktop background using Feh"
(with config.services.xserver.windowManager; xmonad.enable || i3.enable);
config.services.xserver.displayManager.sessionCommands =
lib.mkIf config.stylix.targets.feh.enable
2020-12-21 14:12:04 +00:00
"${pkgs.feh}/bin/feh --no-fehbg --bg-scale ${config.stylix.image}";
}