We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42b73bc commit a33d077Copy full SHA for a33d077
nix/rpi4.nix
@@ -54,7 +54,10 @@ in {
54
users."${user}" = {
55
isNormalUser = true;
56
password = password;
57
- extraGroups = ["wheel"];
+ extraGroups = [
58
+ "wheel"
59
+ "docker"
60
+ ];
61
};
62
63
@@ -70,6 +73,7 @@ in {
70
73
htop
71
74
udiskie
72
75
litecli
76
+ docker-client
77
libraspberrypi
78
];
79
#
@@ -97,4 +101,8 @@ in {
97
101
settings.KbdInteractiveAuthentication = false;
98
102
settings.PermitRootLogin = "no";
99
103
104
+ #
105
+ # Docker
106
107
+ virtualisation.docker.enable = true;
100
108
}
prv
0 commit comments