xieme-art/nix/devshell.nix
Yorick Barbanneau ffea2b6857 ci: rework flake integration
Now Use flake part and integrate a build system using nix package building and treefmt-nix as a flake-part module
2025-05-04 23:44:51 +02:00

20 lines
420 B
Nix

_: {
config.perSystem =
{
config,
inputs',
pkgs,
...
}:
{
devShells = {
default = pkgs.mkShell {
nativeBuildInputs = config.buildPackages ++ config.develPackages ++ config.deployPackages;
shellHook = ''
ln -snf ${config.pelicanplugins} plugins
ln -snf ${config.pelicantheme} theme
'';
};
};
};
}