dgnum.eu/default.nix
Tom Hubrecht e2408410f3
feat(dgnum.eu): v2
Switch to 11ty for the website generation, while keeping the same
content
2024-12-25 22:05:20 +01:00

16 lines
234 B
Nix

{
sources ? import ./npins,
pkgs ? import sources.nixpkgs { },
}:
(pkgs.callPackage ./package.nix { })
// {
devShell = pkgs.mkShell {
name = "dgnum-eu.dev";
packages = [
pkgs.nodejs
pkgs.sass
];
};
}