{ ... }: {
  programs.lf = {
    enable = true;
    commands = {
      q = "quit"; # Why didn't they do this btw
    };
    keybindings = {
      "<enter>" = "$$OPENER $f";
    };
  };

  xdg.desktopEntries.lf = {
    name = "LF";
    genericName = "File browser";
    exec = "lf %U";
    terminal = true;
    mimeType = [ "inode/directory" ];
  };
}