revert for paths that aren't the root dir, i.e. not sensitive to root name change

This commit is contained in:
Kiara Grouwstra 2025-06-16 13:09:52 +02:00
parent 5e887094c3
commit 10d2ab39d0
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
3 changed files with 3 additions and 14 deletions

View file

@ -57,12 +57,7 @@ in
## function calls.
makeTestDeployment =
args:
(import (
builtins.path {
path = ../..;
name = "source";
}
))
(import ../..)
{
inherit lib;
inherit (inputs) nixops4 nixops4-nixos;

View file

@ -19,10 +19,7 @@ let
extraPython3Packages =
let
dir = builtins.path {
path = ./.;
name = "source";
};
dir = toString ./.;
in
with builtins;
listToAttrs (

View file

@ -1,4 +1 @@
(import (builtins.path {
path = ./.;
name = "source";
}) { }).shell
(import ./. { }).shell