Add theme symlink to develop shell

This commit is contained in:
2023-12-22 12:07:20 +01:00
parent b7c8b515f8
commit adefdc7eba

View File

@@ -24,6 +24,6 @@
};
defaultPackage = self.packages.${system}.sebastians-website;
devShells.default = pkgs.mkShell { packages = [ pkgs.hugo ]; };
devShells.default = pkgs.mkShell { packages = [ pkgs.hugo ]; shellHook = "mkdir -p themes; ln -sf ${gokarna} themes/gokarna"; };
});
}