diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 09:49:23 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 09:49:23 +0200 |
| commit | f09eab52f18b0e7c4b11d6112793b349855ecb15 (patch) | |
| tree | 4e2773b772fcc11d23027e2ec721ac5f03dcc52d | |
| parent | 3f3423c1f1585d9dcfd6404a6e6311bfdf837e26 (diff) | |
Moved docker sotrage driver btrfs to be herra specific as kronos doesnt use btrfs
| -rw-r--r-- | hosts/herra/drivers.nix | 2 | ||||
| -rw-r--r-- | system/virtualisation.nix | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hosts/herra/drivers.nix b/hosts/herra/drivers.nix index 27b75ae..e886948 100644 --- a/hosts/herra/drivers.nix +++ b/hosts/herra/drivers.nix @@ -35,4 +35,6 @@ services.udev.extraRules = '' SUBSYSTEM=="hwmon", ATTRS{name}=="amdgpu", ATTR{power1_cap}="75000000" ''; + + virtualisation.docker.storageDriver = "btrfs"; } diff --git a/system/virtualisation.nix b/system/virtualisation.nix index 7bfcb95..1f795ae 100644 --- a/system/virtualisation.nix +++ b/system/virtualisation.nix @@ -1,7 +1,6 @@ {...}: { virtualisation.docker = { enable = true; - storageDriver = "btrfs"; }; users.extraGroups.docker.members = ["mun"]; |
