just file, docker file and website css fixes

This commit is contained in:
2026-05-26 23:04:48 +01:00
parent edace5eef8
commit 2c72bac2e2
5 changed files with 39 additions and 20 deletions
+18 -16
View File
@@ -1,20 +1,22 @@
{
description = "Flake description";
outputs =
{ self, nixpkgs }:
{
# setup the devShell for x86_64-linux.
devShell.x86_64-linux =
with nixpkgs.legacyPackages.x86_64-linux;
mkShell {
buildInputs = [
pnpm
nodejs
];
outputs = {
self,
nixpkgs,
}: {
# setup the devShell for x86_64-linux.
devShell.x86_64-linux = with nixpkgs.legacyPackages.x86_64-linux;
mkShell {
buildInputs = [
pnpm
nodejs
just
podman-compose
];
shellHook = ''
echo "mreow"
'';
};
};
shellHook = ''
echo "mreow"
'';
};
};
}