From 3184cb2e4a91b0f9cacb5e6f33b06d0036e6158c Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 28 Jun 2024 20:22:34 -0700 Subject: [PATCH] trying out backgrounds input --- modules/dwm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/dwm.nix b/modules/dwm.nix index ffa24b9..bb8d7dc 100644 --- a/modules/dwm.nix +++ b/modules/dwm.nix @@ -1,4 +1,4 @@ -{ lib, config, pkgs, ... }: +{ lib, config, pkgs, inputs, ... }: let cfg = config.snowhawk.dwm; @@ -38,7 +38,7 @@ in systemd.user.services.fehbg = { script = '' - /home/ravenshade/bg.sh + ${pkgs.feh}/bin/feh --no-fehbg --bg-scale '${inputs.backgrounds}/bg-none-nord.webp' ''; wantedBy = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ];