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 + ''; + }; }; }