grimm-nixos-laptop/common/xdg/default.nix

20 lines
239 B
Nix
Raw Normal View History

2024-04-27 14:20:48 +02:00
{
imports = [
./portals.nix
2024-12-23 17:45:20 +01:00
# ./mime.nix
2024-04-27 14:20:48 +02:00
];
2024-12-23 17:45:20 +01:00
xdg.terminal-exec = {
enable = true;
settings = {
default = [
"Alacritty.desktop"
"kitty.desktop"
];
};
};
2025-01-26 21:43:23 +01:00
xdg.icons.enable = true;
2024-04-27 14:20:48 +02:00
}