Replace relative paths with self
This commit is contained in:
parent
5e5e46922c
commit
105f88ff1e
4 changed files with 8 additions and 8 deletions
lib/shared/modules
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
{self, ...}: {
|
||||
home.sessionPath = ["$HOME/.config/bin"];
|
||||
|
||||
xdg.configFile.bin = {
|
||||
source = ../../../bin;
|
||||
source = "${self}/bin";
|
||||
recursive = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
{self, ...}: {
|
||||
xdg.configFile.phpactor = {
|
||||
source = ../../../config/phpactor;
|
||||
source = "${self}/config/phpactor";
|
||||
recursive = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue