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.

13 lines
269 B

  1. { config, pkgs, ... }:
  2. {
  3. # Enable the docker virutalization platform.
  4. virtualisation.docker = {
  5. enable = true;
  6. enableOnBoot = true;
  7. autoPrune.enable = true;
  8. };
  9. # Required for the `docker' command.
  10. users.users.chris.extraGroups = [ "docker" ];
  11. }