1
0
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:
Donovan Glover 2023-10-15 11:24:50 -04:00
parent 4365aa59fd
commit d4100d0f1c
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 10 additions and 0 deletions

View File

@ -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
View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
];
}