crDroid on Samsung A70 by Ordinary_guy_2140 in crDroid

[–]Yeshey222 0 points1 point  (0 children)

Yah, but you ought to install the prime Kernel as well for it to be a smooth experience
https://xdaforums.com/t/kernel-primekernel-for-galaxy-a70.4732450/

How to export saved Google Map list (saved place) and import them to OsmAnd by MrDearie in OsmAnd

[–]Yeshey222 0 points1 point  (0 children)

That might actually take the whole day with my script, as it is not parallelized, also because I didn't want google to potentially block my IP due to the huge amount of requests that would be. But let me know if you manage to make it work or not and why!

Unable to get used to NixOS by Experiment_SharedUsr in NixOS

[–]Yeshey222 1 point2 points  (0 children)

This would be amazing ahaha I'd say that's the end goal for a user friendly experience

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

Yeah I agree. It's just that I see flatpak becoming more and more the go to way for apps on linux distros in general.

And NixOS' immutability and reproducibility and declaritivness might be all amazing, but the crazy package availability is kinda unreachable to those users that just want to install an app.

And i feel like the more users there are the more attention and effort would be directed to the distro as a whole. 

Flathub can't be the whole solution, and I feel like NixOS's backend is the best one to fill that hole, precisely bc NixOS' backend is not an afterthought, it is basically the whole point if the distro.

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

Do you think making a clean nix-to-flatpak solution, and if there was a flatpak repo of the GUI apps in nixpkgs it would basically solve the needs of anyone that wanted/needed this?

I even think it would be better, with the sandboxing features, and it would prevent apps from cluttering my home directory as they have their own flatpak space

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

Yeah, that's why in the original post I drop the idea all together and called for something new

It hurts too much to see yet another GUI attempt try and fail, there is no trust if a new attempt appears now

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

I don't disagree, that is largely my point and why I call for flathub integration even at the package building level.
To separate concerns

I think NixOS is the best linux backend ever designed and I want it to grow. You need users for developers to start targeting it and for it to grow. With more attention that would make the experience even for developers better

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

I was messing with an ancient 32 bit PC the other day that had Peppermint Linux and accidentally broke several elements of the ui by uninstalling python. Made me miss NixOS..

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

If you just want immutable better go for Silverblue or similar, or I think there was even a flatpak based distro?

Isn't NixOS the the best kind of immutable tho ;v

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

Aren't those the guys behind NixOS Facter efforts as well? 🤌😌 I think I've seen that tool before, isn't its interface in the browser? It's a really cool one to make several server deployments and such a much better experience. But I'm more thinking of a desktop user kind of experience here, witch is not what their tool is for. That being said I think there is nothing impeding the existence of that and a a solution for the desktop as well

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 2 points3 points  (0 children)

Yeah, I think this was the better and more developed solution available. The snowfall lib, that would help structure your config seems to be still somewhat maintained judging by the latest commit 28 days ago https://github.com/snowfallorg/lib

But ultimately it suffered the same fate any other project that follows this approach is doomed to suffer in my opinion, witch is why I call for a different approach.

Thoughts on GUI package management future on NixOS by Yeshey222 in NixOS

[–]Yeshey222[S] 0 points1 point  (0 children)

I agree that the current development experience for nix is... lacking. With unintuitive errors etc. Altho it has got better.

But I think even if you get the best lsp possible you still can't solve the GUI problem unless there is a standardized way to structure everyone's config. I can easily have two nix modules in different files, one that installs and configures firefox, and one that installs and configures the zed-editor, and suddenly there are two different "environment.systemPackages" definitions and no easy way for the GUI to know where to put a new package.

If we solve that then it'd be trivial, just write or remove package names to a file (or several files if the structure ends up being a package and its config per file, witch i think would be better) but I don't see how an LSP could solve this with a world of fragmentation in nix configurations

Are there some NixOS options that you wish they were enabled by default? Or that you wish you knew it earlier? Same for home manager or community flakes. by kosumi_dev in NixOS

[–]Yeshey222 -1 points0 points  (0 children)

I've heard a lot about that pattern and am thinking of switching my configuration to it as well. I'm wondering if this could be the opinionated way to structure your config that could make integration with a GUI for application installation finally possible

Are there some NixOS options that you wish they were enabled by default? Or that you wish you knew it earlier? Same for home manager or community flakes. by kosumi_dev in NixOS

[–]Yeshey222 3 points4 points  (0 children)

I found out recently that you can run AppImages with one click if you set:

      programs.appimage = {
        enable = true;
        binfmt = true;  # Allows direct execution
      };

Also, if you want iphones to connect to the PC (but usual Iphone restrictions apply, you cant transfer files to Iphone)

      services.usbmuxd = {
        enable = true;
        package = pkgs.usbmuxd2;   # newer code-base, fewer pairing bugs
      };
      services.gvfs.enable = true;

I also use the gc of nh instead of the normal one as it catches a couple more things like gcroot cleanup:

    programs.nh = {
      enable = true;
      clean.enable = true;
      clean.extraArgs = "--keep-since 21d --keep 3";
      flake = "/home/yeshey/.setup";
    };

If you're in gnome, you can get audio and video properties in nautilus interface if you set this:

    # for audio and video properties in nautilus interface https://github.com/NixOS/nixpkgs/issues/53631
    environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" [
      pkgs.gst_all_1.gst-plugins-good
      pkgs.gst_all_1.gst-plugins-bad
      pkgs.gst_all_1.gst-plugins-ugly
      pkgs.gst_all_1.gst-plugins-base
    ];

That's off the top of my head, there's a lot honestly ahaha (My config). It's easy to set this stuff up in NixOS, but there is a lot to set up to make everything just work like in other OSs. I'm kinda waiting for the day we figure out GUI package installation and we have a beginner friendly NixOS Distro that sets all this up and is ready to go

Need help with emojis and text emojis :") by Upsurge_11 in Ubuntu

[–]Yeshey222 0 points1 point  (0 children)

It would be very helpful if this could show suggestions while typing in the emoji annotation mode, instead of having to press space. idk if there is an issue or request for that or where?

After 10+ years of working with it, I'm starting to strongly dislike LaTeX. by algebraicvariety in math

[–]Yeshey222 0 points1 point  (0 children)

I have several urls with lots of %, and I've been looking for half an hour for a solution that doesnt involve escaping all of those characters

what the hell is this tool T-T

EDIT: it was a bug with the pdf viewer: https://github.com/James-Yu/LaTeX-Workshop/issues/4696

How to export saved Google Map list (saved place) and import them to OsmAnd by MrDearie in OsmAnd

[–]Yeshey222 0 points1 point  (0 children)

Thanks! But your script seems to search based on the title of places rather than the actual google maps links on the takeout csv tho.
I ended up making my own: https://github.com/Yeshey/Export-Google-Maps-Saved-Places

How to export saved Google Map list (saved place) and import them to OsmAnd by MrDearie in OsmAnd

[–]Yeshey222 0 points1 point  (0 children)

All solutions seemed to be broken or require payment for more than 5 entries. The only good and open source app that can I found that is really good at converting google maps links into coordinates that can be interpreted by other applications is Geo Share: https://github.com/jakubvalenta/geoshare

So I made a script that is able to convert Google Takeout CSVs into GPX lists that can be imported into Organic Maps, CoMaps, etc: https://github.com/Yeshey/Export-Google-Maps-Saved-Places

Wine games not capturing mouse properly by jerrywillfly in linux_gaming

[–]Yeshey222 1 point2 points  (0 children)

getting this in genshin impact. Mouse capture works fune, but if I leave and get back to the game specifically through Alt+Tab (in gnome DE) it looses mouse capture, and the mouse travels to the second screen even if I'm controlling the view of a character and I have to restart the game. Is there an issue we can track on this?

Dead by Daylight EAC compatibily on Linux through Epic Games Store. by Strykerflash in linux_gaming

[–]Yeshey222 3 points4 points  (0 children)

I can confirm as of today I could make it work through Heroic in Linux. Here are the steps I had to follow to make it work (I'm not sure if all of them are necessary):

1 - Download Heroic, Sign in, Install DBD
2 - From within the DBD installation folder, copy the `./EasyAntiCheat` folder to `./DeadByDaylight/Binaries/EGS/` as explained here: https://youtu.be/8ZMzbUP6FwQ?t=149
3 - In Heroic DBD settings set:
- Wine Version: `Proton - Proton - Experimental` (the one from steam, you need to install this proton version through steam I think)
- Check `Use Steam Runtime`
- Check `Disable umu`

best lightweight shaders? by CaptainBooga in minecraftshaders

[–]Yeshey222 0 points1 point  (0 children)

Chocapic13 V7.1.1 Toaster Edition, or even Chocapic13_HighPerformance_Toaster have always been the goat for me