feat(eww -> nix): Link eww-bard script to local bin with HM

This commit is contained in:
GaspardCulis 2024-09-20 18:15:00 +02:00
parent 9547d9812e
commit 027b971f8a

View file

@ -1,15 +1,14 @@
{ {pkgs, ...}: {
pkgs,
...
} : {
home.file = { home.file = {
".config/eww".source = ../eww; ".config/eww".source = ../eww;
# Eww-barD script
".local/bin/eww-bard" = {
source = ../../bin/eww-bard;
executable = true;
};
}; };
home.packages = [ home.packages = [
pkgs.eww pkgs.eww
]; ];
} }