Set the system path to a fixed location.

This commit is contained in:
r-vdp 2023-06-12 01:23:58 +02:00
parent d5f138f939
commit ce4b4bcf8b
No known key found for this signature in database
2 changed files with 64 additions and 11 deletions

View file

@ -50,12 +50,18 @@ let
services.nginx.enable = false;
environment.etc = {
foo_new = {
text = ''
This is just a test!
'';
environment = {
etc = {
foo_new = {
text = ''
This is just a test!
'';
};
};
systemPackages = [
pkgs.fish
];
};
systemd.services = {
@ -258,9 +264,14 @@ forEachUbuntuImage
node1.succeed("/system-manager-profile/bin/activate 2>&1 | tee /tmp/output.log")
node1.succeed("grep -vF 'ERROR' /tmp/output.log")
node1.wait_for_unit("system-manager.target")
node1.wait_for_unit("system-manager-path.service")
node1.succeed("bash --login -c 'realpath $(which rg) | grep -F ${hostPkgs.ripgrep}/bin/rg'")
node1.succeed("bash --login -c 'realpath $(which fd) | grep -F ${hostPkgs.fd}/bin/fd'")
node1.succeed("${newConfig}/bin/activate 2>&1 | tee /tmp/output.log")
node1.succeed("grep -vF 'ERROR' /tmp/output.log")
node1.succeed("bash --login -c 'realpath $(which fish) | grep -F ${hostPkgs.fish}/bin/fish'")
'';
})
];