diff --git a/home.nix b/home.nix index 875247b..8afcb43 100644 --- a/home.nix +++ b/home.nix @@ -5,6 +5,7 @@ ./homeManagerModules/git.nix ./homeManagerModules/shell.nix ./homeManagerModules/ssh.nix + ./homeManagerModules/docker.nix # inputs._1password-shell-plugins.hmModules.default ]; # Home Manager needs a bit of information about you and the paths it should diff --git a/homeManagerModules/docker.nix b/homeManagerModules/docker.nix new file mode 100644 index 0000000..5d746c2 --- /dev/null +++ b/homeManagerModules/docker.nix @@ -0,0 +1,8 @@ +{ config, lib, ... }: +{ + home.packages = with pkgs; [ + docker + docker-compose + lazydocker + ]; +} \ No newline at end of file