Docker-DocumentServer/default.nix

12 lines
182 B
Nix
Raw Permalink Normal View History

2024-09-22 22:23:41 +02:00
{ pkgs ? (import <nixpkgs> {
config.allowUnfree = true;
}),
}:
pkgs.mkShell {
pure = true;
packages = with pkgs; [
# Choose the build tools that you need
act
];
}