9 lines
186 B
Nix
9 lines
186 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = [ pkgs.docker-credential-helpers ];
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
storageDriver = "btrfs";
|
|
};
|
|
};
|
|
}
|