feat(nixos): Install docker
This commit is contained in:
parent
a53544ced3
commit
bcabfcc4d3
3 changed files with 18 additions and 0 deletions
|
@ -23,6 +23,10 @@ in {
|
|||
tui = enabled;
|
||||
gui = enabled;
|
||||
};
|
||||
|
||||
services = {
|
||||
docker = enabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -22,6 +22,7 @@ in {
|
|||
};
|
||||
|
||||
services = {
|
||||
docker = enabled;
|
||||
openssh = enabled;
|
||||
};
|
||||
};
|
||||
|
|
13
modules/nixos/services/docker/default.nix
Normal file
13
modules/nixos/services/docker/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
cfg = config.marleyos.services.docker;
|
||||
in {
|
||||
options.marleyos.services.docker.enable = lib.mkEnableOption "docker";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
virtualisation.docker.enable = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue