I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
437 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, pkgs, ... }:
  3. {
  4. # Enable the docker virutalization platform.
  5. virtualisation.docker = {
  6. enable = true;
  7. enableOnBoot = true;
  8. autoPrune.enable = true;
  9. };
  10. # Required for the `docker' command.
  11. users.users.chris.extraGroups = [ "docker" ];
  12. # Add docker extensions.
  13. environment.systemPackages = [
  14. pkgs.docker-compose
  15. pkgs.docker-machine
  16. ];
  17. }