rest of the split migration
This commit is contained in:
19
modules/dev/docker/common.nix
Normal file
19
modules/dev/docker/common.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ pkgs }:
|
||||
let
|
||||
packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
dockfmt
|
||||
dockerfile-language-server
|
||||
;
|
||||
};
|
||||
in
|
||||
{
|
||||
inherit packages;
|
||||
devShell = pkgs.mkShell {
|
||||
inherit packages;
|
||||
name = "docker-dev-shell";
|
||||
shellHook = ''
|
||||
echo "🐳 Docker dev environment"
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user