Docker : Remove config.
This commit is contained in:
parent
75dbb11641
commit
40a295207f
|
@ -1,7 +1,3 @@
|
||||||
{ pkgs, key, util, ... } @args: let
|
{ ... }: {
|
||||||
docker = import ./docker/Init.nix args;
|
|
||||||
config = pkgs.writeText "dockerConfig" docker.text;
|
|
||||||
in {
|
|
||||||
environment.variables.DOCKER_CONFIG = config;
|
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
{ pkgs, key, util, ... } @args: let
|
{ ... }: {
|
||||||
docker = import ./docker/Init.nix args;
|
|
||||||
config = pkgs.writeText "dockerConfig" docker.text;
|
|
||||||
in {
|
|
||||||
environment.variables.DOCKER_CONFIG = config;
|
|
||||||
virtualisation.docker.enable = true;
|
virtualisation.docker.enable = true;
|
||||||
virtualisation.docker.rootless = {
|
virtualisation.docker.rootless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ key, util, ... }: {
|
|
||||||
text = util.trimTabs ''
|
|
||||||
{
|
|
||||||
"detachKeys": "ctrl-${key.action.wait}"
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
}
|
|
Loading…
Reference in a new issue