add docker

This commit is contained in:
Murphy 2025-02-07 20:58:53 -05:00
parent 8ee00b5e21
commit 76e2c84490
Signed by: freya
GPG key ID: 9FBC6FFD6D2DBF17

View file

@ -56,11 +56,15 @@
jack.enable = true; jack.enable = true;
}; };
# docker
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
# create user account # create user account
users.users.${config.user} = { users.users.${config.user} = {
isNormalUser = true; isNormalUser = true;
description = config.fullName; description = config.fullName;
extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" ]; extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" "docker" ];
home = config.homePath; home = config.homePath;
shell = pkgs.zsh; shell = pkgs.zsh;
}; };