Fix small mistake

This commit is contained in:
Javier Feliz 2025-09-07 20:34:49 -04:00
parent a7c8d0d0df
commit b141732986
2 changed files with 5 additions and 4 deletions

View File

@ -97,11 +97,12 @@
# Move overlay outside system-specific outputs
}
)) // {
))
// {
overlays.default = final: prev: {
waycast = self.packages.${final.stdenv.hostPlatform.system}.default;
};
homeManagerModules.default = import ./modules/home-manager/waycast.nix;
};
}

View File

@ -78,7 +78,7 @@ in
];
# Ensure cache and data dirs exist to avoid runtime errors in the future
home.file."${config.xdg.cacheHome}/waycast".isDir = true;
home.file."${config.xdg.dataHome}/waycast".isDir = true;
home.file."${config.xdg.cacheHome}/waycast/.keep".text = "";
home.file."${config.xdg.dataHome}/waycast/.keep".text = "";
};
}