From 49c530047a0b470d4af82ab21fe7add8350b5273 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Thu, 11 Dec 2025 20:16:13 +0000 Subject: [PATCH] format --- modules/home.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/modules/home.nix b/modules/home.nix index 7185084..040f2a0 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -12,12 +12,13 @@ in { home = { packages = pkgs.callPackage ./packages.nix {inherit inputs;}; stateVersion = constants.stateVersions.homeManager; - activation = lib.mkIf pkgs.stdenv.isDarwin { - "setWallpaper" = - lib.hm.dag.entryAfter ["revealHomeLibraryDirectory"] '' - echo "[+] Setting wallpaper" - ${setWallpaperScript}/bin/set-wallpaper-script - ''; - }; + activation = + lib.mkIf pkgs.stdenv.isDarwin { + "setWallpaper" = + lib.hm.dag.entryAfter ["revealHomeLibraryDirectory"] '' + echo "[+] Setting wallpaper" + ${setWallpaperScript}/bin/set-wallpaper-script + ''; + }; }; }