add docker
This commit is contained in:
parent
8ee00b5e21
commit
76e2c84490
1 changed files with 5 additions and 1 deletions
|
@ -56,11 +56,15 @@
|
|||
jack.enable = true;
|
||||
};
|
||||
|
||||
# docker
|
||||
virtualisation.docker.enable = true;
|
||||
virtualisation.docker.storageDriver = "btrfs";
|
||||
|
||||
# create user account
|
||||
users.users.${config.user} = {
|
||||
isNormalUser = true;
|
||||
description = config.fullName;
|
||||
extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" ];
|
||||
extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" "docker" ];
|
||||
home = config.homePath;
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue