diff --git a/home/christoph/default.nix b/home/christoph/default.nix index c5630e90..e19ffede 100644 --- a/home/christoph/default.nix +++ b/home/christoph/default.nix @@ -252,10 +252,12 @@ # This only works when HM is installed as a system module, # as nixosConfig won't be available otherwise. xdg = { - enable = !headless; - mime.enable = !headless; + enable = true; # This only does xdg path management + mime.enable = nixosConfig.modules.mime.enable; + mimeApps = { - enable = !headless; + enable = nixosConfig.modules.mime.enable; + associations.added = nixosConfig.xdg.mime.addedAssociations; associations.removed = nixosConfig.xdg.mime.removedAssociations; defaultApplications = nixosConfig.xdg.mime.defaultApplications;