Replace relative paths with self

This commit is contained in:
Oliver Davies 2024-03-17 00:28:38 +00:00
parent 5e5e46922c
commit 105f88ff1e
4 changed files with 8 additions and 8 deletions
lib/shared/modules

View file

@ -1,8 +1,8 @@
{
{self, ...}: {
home.sessionPath = ["$HOME/.config/bin"];
xdg.configFile.bin = {
source = ../../../bin;
source = "${self}/bin";
recursive = true;
};
}

View file

@ -1,6 +1,6 @@
{
{self, ...}: {
xdg.configFile.phpactor = {
source = ../../../config/phpactor;
source = "${self}/config/phpactor";
recursive = true;
};
}