switch back to nixfmt

This commit is contained in:
Sean Kovacs 2026-01-19 22:27:28 -05:00
commit 62032eab6d
Signed by: sckova
GPG key ID: 00F325187C68651A
37 changed files with 797 additions and 689 deletions

View file

@ -2,7 +2,8 @@
pkgs,
config,
...
}: let
}:
let
script = pkgs.writeShellScript "bing-wallpaper" ''
set -euo pipefail
@ -62,7 +63,8 @@
echo "Wallpaper downloaded and applied successfully."
'';
in {
in
{
home.packages = with pkgs; [
wpaperd
];
@ -81,9 +83,9 @@ in {
systemd.user.services.wpaperd = {
Unit = {
Description = "Modern wallpaper daemon for Wayland";
PartOf = ["niri.service"];
Requires = ["niri.service"];
After = ["niri.service"];
PartOf = [ "niri.service" ];
Requires = [ "niri.service" ];
After = [ "niri.service" ];
};
Service = {
ExecStart = "${pkgs.wpaperd}/bin/wpaperd";
@ -128,7 +130,7 @@ in {
Persistent = true;
};
Install = {
WantedBy = ["timers.target"];
WantedBy = [ "timers.target" ];
};
};
}