fix flake

master
Rachel Lambda Samuelsson 2023-08-02 17:04:41 +02:00
parent cd5df7b956
commit 47be859ef7
2 changed files with 7 additions and 8 deletions

View File

@ -13,6 +13,8 @@ exclude:
- "readme.md"
- "LICENSE"
- "shell.nix"
- "flake.nix"
- "flake.lock"
katex:
rendering_options:

View File

@ -1,12 +1,9 @@
{
description = "My website";
outputs = { self, nixpkgs }:
{
devShells.x86_64-linux.default = import ./shell.nix {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
};
defaultPackage.x86_64-linux = self.devShells.x86_64-linux.default;
};
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default = import ./shell.nix {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
};
};
}