Add docker
This commit is contained in:
parent
efd9950f81
commit
ab69479fdb
2 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
||||||
../../modules/keymaps/us.nix
|
../../modules/keymaps/us.nix
|
||||||
../../modules/bluetooth.nix
|
../../modules/bluetooth.nix
|
||||||
../../modules/pipewire.nix
|
../../modules/pipewire.nix
|
||||||
|
../../modules/docker.nix
|
||||||
|
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
6
modules/docker.nix
Normal file
6
modules/docker.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
users.users.florian.extraGroups = [ "docker" ];
|
||||||
|
}
|
Loading…
Reference in a new issue