diff options
| author | Fuwn <[email protected]> | 2024-09-05 01:41:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-05 01:41:02 -0700 |
| commit | bebff97d3d0e0bd4d1b06cfdfc06d945e2d54557 (patch) | |
| tree | 6bde70fc51334366900b6212d337f7fd6d9b618e | |
| parent | Bump (diff) | |
| download | nixos-config-bebff97d3d0e0bd4d1b06cfdfc06d945e2d54557.tar.xz nixos-config-bebff97d3d0e0bd4d1b06cfdfc06d945e2d54557.zip | |
Bump: docker
| -rw-r--r-- | justfile | 4 | ||||
| -rw-r--r-- | modules/virtualisation/docker.nix | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -29,7 +29,7 @@ home user='ebisu': news user='ebisu': home-manager news --flake .#{{user}} -bump message='Bump': +bump message='': git add . - git commit -m "{{message}}" + git commit -m "{{ if message == "" { "Bump" } else { "Bump: " + message } }}" git push origin main diff --git a/modules/virtualisation/docker.nix b/modules/virtualisation/docker.nix index 20ce40a..88d689a 100644 --- a/modules/virtualisation/docker.nix +++ b/modules/virtualisation/docker.nix @@ -10,7 +10,7 @@ daemon.settings = { default-runtime = "nvidia"; - # runtimes.nvidia.path = "${pkgs.nvidia-docker}/bin/nvidia-container-runtime"; + runtimes.nvidia.path = "${pkgs.nvidia-docker}/bin/nvidia-container-runtime"; experimental = true; }; @@ -20,7 +20,7 @@ }; rootless = { - enable = false; + enable = true; setSocketVariable = true; daemon.settings = { |