cdombroski

joined 2 years ago
[–] cdombroski@programming.dev 13 points 11 months ago

Here's the closest thing we have to a solution: xdg-ninja

It looks in your home for known files and folders outside of the proper xdg locations and tells you if and how you can move them to their proper place

[–] cdombroski@programming.dev 3 points 1 year ago

If the package you're using stays up to date and doesn't require much setup, you could plug a dockerTools.buildLayeredImage into the imageFile attribute. The name and the tag in the built image should match what's in the image attribute. An example (busybox is only included for debugging):

        image = "my-calibre-web:latest";
        imageFile = pkgs.dockerTools.buildLayeredImage {
          name = "my-calibre-web";
          tag = "latest";
          contents = [ pkgs.busybox ];
          config.Cmd = [
            "${pkgs.calibre-web}/bin/calibre-web"
            "-p"
            "/config/app.db"
            "-g"
            "/config/gdrive.db"
            "-i"
            "0.0.0.0"
          ];
        };
[–] cdombroski@programming.dev 1 points 1 year ago

You don't have to wait for the enthusiasts to buy it up, these days the scalpers will take care of that for you. Not sure that that's going to help the 7800 price though.

[–] cdombroski@programming.dev 9 points 1 year ago (1 children)

That is indeed Don Quixote and I believe you'll find that he is tilting at that windmill

[–] cdombroski@programming.dev 5 points 1 year ago

Having 3 or more identities often causes authentication to fail before it gets around to trying password authentication (or even all the possible keys). Recommend configuring the client to turn off PubkeyAuthentication by default (so that hosts that you don't have a key for will prompt for a password) and specify which key to use on the appropriate hosts using IdentityFile (might need to specifically turn PubkeyAuthentication back on, I don't remember how openssh handles having a default host block with specific host blocks)