From 504fb96771a113ee4f03b1102518e9f579ab8b3b Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Mon, 20 May 2024 19:11:04 +0100
Subject: [PATCH] Add `swaybg`

At the moment, it's not being run automatically when sway starts, so I
need to add it to my sway configuration.
---
 lib/nixos/modules/sway.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/nixos/modules/sway.nix b/lib/nixos/modules/sway.nix
index 9bcab56b..7a0897be 100644
--- a/lib/nixos/modules/sway.nix
+++ b/lib/nixos/modules/sway.nix
@@ -24,6 +24,6 @@
       XDG_SESSION_TYPE = "wayland";
     };
 
-    home.packages = with pkgs; [ i3status wdisplays wl-clipboard wofi ];
+    home.packages = with pkgs; [ i3status swaybg wdisplays wl-clipboard wofi ];
   };
 }