forked from extern/nix-config
feat: Add back docker
Docker is actually useful for some things, and NixOS containers don't replace pre-existing solutions with docker-compose files.
This commit is contained in:
parent
4365aa59fd
commit
d4100d0f1c
@ -2,6 +2,7 @@
|
||||
imports = [
|
||||
./boot.nix
|
||||
./cdemu.nix
|
||||
./docker.nix
|
||||
./dual-function-keys.nix
|
||||
./fish.nix
|
||||
./fonts.nix
|
||||
|
9
modules/docker.nix
Normal file
9
modules/docker.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
docker-compose
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user