diff options
Diffstat (limited to 'modules/system/systemd.nix')
| -rw-r--r-- | modules/system/systemd.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/system/systemd.nix b/modules/system/systemd.nix new file mode 100644 index 0000000..9ecb5b2 --- /dev/null +++ b/modules/system/systemd.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: +{ + # boot.initrd.systemd.enable = true; + + systemd.services.containerd.path = with pkgs; [ + containerd + runc + iptables + nvidia-docker + ]; +} |