- Replace Super+Shift+, with Super+Alt+P to toggle settings - Force mimeapps.list in XDG config
14 lines
201 B
Nix
14 lines
201 B
Nix
_: {
|
|
xdg = {
|
|
enable = true;
|
|
mime.enable = true;
|
|
mimeApps.enable = true;
|
|
configFile."mimeapps.list".force = true;
|
|
};
|
|
|
|
imports = [
|
|
./desktop-entries.nix
|
|
./portal.nix
|
|
];
|
|
}
|