From ed259b875d35c71f8b712786625c31d53130ca1d Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Thu, 4 Apr 2024 22:34:05 +0200 Subject: swaylock: correct path to wallpaper # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # On branch main # Your branch is up to date with 'origin/main'. # # Changes to be committed: # modified: hm/swaylock/default.nix # # Untracked files: # modules/nixos/sils/wallpaper.jpg # --- hm/swaylock/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hm') diff --git a/hm/swaylock/default.nix b/hm/swaylock/default.nix index d63cd56..38fab7c 100644 --- a/hm/swaylock/default.nix +++ b/hm/swaylock/default.nix @@ -1,8 +1,8 @@ -{...}: { +{self, ...}: { programs.swaylock = { enable = true; settings = { - image = "${../../../files/wallpaper.jpg}"; + image = "${self}/files/wallpaper.jpg"; }; }; } -- cgit 1.4.1