From 9e940fc67fac3cccd9fbe4a8a9ba7f27846512a4 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 9 Jul 2025 01:24:51 +0200 Subject: [PATCH] Home: Enable mime stuff based on headless --- home/christoph/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/christoph/default.nix b/home/christoph/default.nix index eeef6ac8..c5630e90 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -253,9 +253,9 @@ # as nixosConfig won't be available otherwise. xdg = { enable = !headless; - mime.enable = nixosConfig.xdg.mime.enable; + mime.enable = !headless; mimeApps = { - enable = nixosConfig.xdg.mime.enable; + enable = !headless; associations.added = nixosConfig.xdg.mime.addedAssociations; associations.removed = nixosConfig.xdg.mime.removedAssociations; defaultApplications = nixosConfig.xdg.mime.defaultApplications;