refactor(nix): move attributes around

This commit is contained in:
2026-05-09 15:01:11 -04:00
parent 49aaf5c058
commit a30fb645dd
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -18,13 +18,13 @@
{
devShells.default = pkgs.mkShell {
name = "errornocord";
buildInputs = [ self'.packages.default ];
inputsFrom = [ self'.packages.default ];
buildInputs = [ self'.packages.default ];
};
packages = rec {
errornocord = pkgs.callPackage ./nix/package.nix { inherit self; };
default = errornocord;
errornocord = pkgs.callPackage ./nix/package.nix { inherit self; };
};
};