reduce directory nesting
2 files changed, 3 insertions(+), 3 deletions(-)
changed files
M flake.nix → flake.nix
@@ -20,7 +20,7 @@ let pkgs = nixpkgs.legacyPackages.${system}; in { - packages.default = pkgs.callPackage ./nix/package { + packages.default = pkgs.callPackage ./nix/pkg.nix { inherit (gomod2nix.legacyPackages.${system}) buildGoApplication; }; devShells.default = pkgs.callPackage ./nix/shell.nix {
M nix/package/default.nix → nix/pkg.nix
@@ -19,8 +19,8 @@ buildGoApplication { pname = "elgit"; version = "0.1"; - src = ../..; - modules = ../gomod2nix.toml; + src = ../.; + modules = ./gomod2nix.toml; passthru.tests = { inherit (nixosTests) legit; };