Skip to content

Commit bdc5ff5

Browse files
committed
fmt: alejandra formatting
1 parent bd2cb6e commit bdc5ff5

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed
Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
{ pkgs, ... }:
22

33
{
4-
home.file = let
5-
defaultWallpaper = ../../../../assets/wallpapers/sea.png;
6-
wallpaperPath = ".config/hypr/default.png";
7-
in {
8-
".config/hypr/hyprpaper.conf".text = ''
9-
preload = ~/${wallpaperPath}
10-
wallpaper = , ~/${wallpaperPath}
11-
splash = true
12-
ipc = off
13-
'';
4+
home.file =
5+
let
6+
defaultWallpaper = ../../../../assets/wallpapers/sea.png;
7+
wallpaperPath = ".config/wallpapers/default.png";
8+
in
9+
{
10+
".config/hypr/hyprpaper.conf".text = ''
11+
preload = ~/${wallpaperPath}
12+
wallpaper = , ~/${wallpaperPath}
13+
splash = true
14+
ipc = off
15+
'';
1416

15-
"${wallpaperPath}".source = defaultWallpaper;
16-
};
17+
"${wallpaperPath}".source = defaultWallpaper;
18+
};
1719

1820
systemd.user.services.hyprpaper = {
1921
Unit = {
2022
Description = "Hyprland wallpaper daemon";
21-
PartOf = ["graphical-session.target"];
23+
PartOf = [ "graphical-session.target" ];
2224
};
2325
Service = {
2426
ExecStart = "${pkgs.unstable.hyprpaper}/bin/hyprpaper";
2527
Restart = "on-failure";
2628
};
27-
Install.WantedBy = ["graphical-session.target"];
29+
Install.WantedBy = [ "graphical-session.target" ];
2830
};
2931
}

0 commit comments

Comments
 (0)