20 lines
371 B
Nix
20 lines
371 B
Nix
_: {
|
|
config.perSystem =
|
|
{
|
|
config,
|
|
inputs',
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
devShells = {
|
|
default = pkgs.mkShell {
|
|
nativeBuildInputs = config.develPackages;
|
|
shellHook = ''
|
|
ln -snf ${config.pelicanplugins} plugins
|
|
ln -snf ${config.pelicantheme} theme
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|