From 027b971f8aff0b733705d23921032ec62e8e4844 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Fri, 20 Sep 2024 18:15:00 +0200 Subject: [PATCH] feat(eww -> nix): Link `eww-bard` script to local bin with HM --- bar/eww/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/bar/eww/default.nix b/bar/eww/default.nix index c895afe..28d6820 100644 --- a/bar/eww/default.nix +++ b/bar/eww/default.nix @@ -1,15 +1,14 @@ -{ - pkgs, - ... -} : { +{pkgs, ...}: { home.file = { ".config/eww".source = ../eww; + # Eww-barD script + ".local/bin/eww-bard" = { + source = ../../bin/eww-bard; + executable = true; + }; }; - + home.packages = [ pkgs.eww ]; } - - -