mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
14 lines
363 B
Nix
14 lines
363 B
Nix
{ lib, config, ... }:
|
|
{
|
|
stylix = lib.mkIf (!config.swarselsystems.isNixos) (lib.recursiveUpdate
|
|
{
|
|
image = config.swarselsystems.wallpaper;
|
|
targets = {
|
|
emacs.enable = false;
|
|
waybar.enable = false;
|
|
sway.useWallpaper = false;
|
|
firefox.profileNames = [ "default" ];
|
|
};
|
|
}
|
|
config.swarselsystems.stylix);
|
|
}
|