mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
19 lines
364 B
Nix
19 lines
364 B
Nix
{ pkgs, ... }: {
|
|
xdg = {
|
|
enable = true;
|
|
autostart.enable = true;
|
|
mime.enable = true;
|
|
portal.extraPortals = with pkgs; [
|
|
xdg-desktop-portal-gnome
|
|
xdg-desktop-portal-gtk
|
|
gnome-keyring
|
|
];
|
|
|
|
mimeApps = {
|
|
enable = true;
|
|
defaultApplications = {
|
|
"inode/directory" = "pcmanfm.desktop";
|
|
};
|
|
};
|
|
};
|
|
}
|