Docker-DocumentServer/default.nix
2024-09-22 22:23:41 +02:00

12 lines
182 B
Nix

{ pkgs ? (import <nixpkgs> {
config.allowUnfree = true;
}),
}:
pkgs.mkShell {
pure = true;
packages = with pkgs; [
# Choose the build tools that you need
act
];
}