refactor: replace 'with' with attrValues

This commit is contained in:
matt1432 2024-08-31 19:16:06 -04:00
parent b47c11362d
commit 194c140dc1
56 changed files with 675 additions and 608 deletions
nixosModules/docker

View file

@ -38,8 +38,8 @@ in {
};
# Script for updating the images of all images of a compose.nix file
environment.systemPackages = with pkgs; [
(callPackage ./updateImage.nix {})
environment.systemPackages = [
(pkgs.callPackage ./updateImage.nix {})
];
};