docker-nextcloud-extended/default.nix

12 lines
182 B
Nix
Raw Normal View History

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