Added docker to nix config
This commit is contained in:
parent
6a3503794c
commit
396efda36a
@ -14,6 +14,7 @@
|
||||
home.packages = with pkgs; [
|
||||
feh
|
||||
dconf
|
||||
docker
|
||||
discord
|
||||
pavucontrol
|
||||
google-chrome
|
||||
|
@ -93,12 +93,15 @@
|
||||
syntaxHighlighting.enable = true;
|
||||
};
|
||||
|
||||
# Docker configuration
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.random = {
|
||||
isNormalUser = true;
|
||||
useDefaultShell = true;
|
||||
description = "random";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||
packages = with pkgs; [];
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user