config/powercord: use bindmount instead of symlink

This commit is contained in:
Infinidoge 2021-11-10 11:50:56 -05:00
parent fec66eeb42
commit 861cb45d45

View file

@ -1,4 +1,4 @@
{ config, ... }: {
{ config, main, ... }: {
xdg.configFile = {
"qtile".source = ./qtile;
@ -10,7 +10,14 @@
};
"blugon".source = ./blugon;
};
"powercord".source = ./powercord;
home.bindmounts."${main.bud.localFlakeClone}/users/infinidoge/config" = {
directories = [
{
source = "powercord";
target = ".config/powercord";
}
];
};
}