Add docker

This commit is contained in:
Florian RICHER 2024-03-08 10:17:02 +01:00
parent efd9950f81
commit ab69479fdb
2 changed files with 7 additions and 0 deletions

View file

@ -15,6 +15,7 @@
../../modules/keymaps/us.nix
../../modules/bluetooth.nix
../../modules/pipewire.nix
../../modules/docker.nix
# Include the results of the hardware scan.
./hardware-configuration.nix

6
modules/docker.nix Normal file
View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
virtualisation.docker.enable = true;
users.users.florian.extraGroups = [ "docker" ];
}