commit 110ad40eeb20dafa22805dd815be1260f97d00a5 (tree) parent 727f37945659e12a822952a751da5cdfad879747 Author: Motiejus Jakštys <motiejus@jakstys.lt> Date: Fri, 17 Apr 2026 11:17:11 +0000 macworx: mount /var/folders in colima Diffstat:
| M | hosts/macworx/configuration.nix | | | 18 | +++++++++++++++++- |
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/hosts/macworx/configuration.nix b/hosts/macworx/configuration.nix @@ -103,5 +103,21 @@ in }; }; - home-manager.users.${config.mj.username}.programs.ghostty.package = pkgs.ghostty-bin; + home-manager.users.${config.mj.username} = { + programs.ghostty.package = pkgs.ghostty-bin; + + home.file.".colima/_templates/default.yaml".text = '' + cpu: 2 + memory: 4 + disk: 100 + arch: aarch64 + runtime: docker + vmType: vz + mountType: virtiofs + mountInotify: true + mounts: + - location: /var/folders + writable: true + ''; + }; }