[-] [email protected] 42 points 1 month ago

I actually found the tone of the article (which is in tune with the title) quite refreshing, to the point that I read it all despite the fact I couldn't care less about cars :)

IDK about the US press (I live elsewhere) but sometimes I feel the news could benefit from more candidly opinionated articles like this one and less professional-sounding pieces crafted to influence the readers' opinions instead of informing them of the writer's.

[-] [email protected] 22 points 1 month ago

I can't wait for chatGPT to learn it should answer every disjunctive question with "por que no los dos?"

[-] [email protected] 24 points 2 months ago

Makes perfect sense to me (not a lawyer, not a US person)... what doesn't make sense is how many people still think biometric is high security (maybe because of how cool they make it look in the movies?)

[-] [email protected] 39 points 4 months ago

capitalism in a nutshell

[-] [email protected] 24 points 9 months ago

Move to the EU :)

[-] [email protected] 26 points 9 months ago

The really important sosftware gets ported to all the platforms

[-] [email protected] 24 points 10 months ago

I use firefox on arch, btw

[-] [email protected] 25 points 10 months ago

I'm shocked! ...that so far they were using whatsapp.

[-] [email protected] 22 points 10 months ago

Absolutely! /s

TBH, the mods should change the sidebar from "News from around the world!" to something like "News that have international relevance".... otherwise we can't really scold people who post curiosity stories.

4
submitted 10 months ago by [email protected] to c/[email protected]

I need to generate a number of scripts in my configuration and make them into a single package (for ease of reference, because there are a lot of them).

So far, I'm creating the scripts via writeShellApplication, making them into packages via an overlay, merging them with buildEnv and then adding the resulting package to `systemPackages.

Something like:

nixpkgs.overlays = [ (final: prev: {
  my-hello-1 = final.writeShellApplication {
    name = "my-hello-1-script";
    text = "echo my hello wolrd 1";
  };
  my-hello-2 = final.writeShellApplication {
    name = "my-hello-2-script";
    text = "echo my hello wolrd 1";
  };
  my-hello-scripts = final.buildEnv {
    name = "my-hello-scripts";
    paths = [ final.my-hello-1 final.my-hello-2 ];
  };
}) ];

environment.systemPackages = [ pkgs.my-hello-scripts ];

This works, but I don't really need the my-hello-1 and my-hello-2 packages... can you think of a way to make do without needing them?

4
submitted 10 months ago by [email protected] to c/[email protected]

I'm migrating my NAS to nixos, and I got to the point of setting up my restic backups.

services.restic.backups is great, but -- on top of the systemd timers/services -- I also want some helper scripts (eg. one to easily mount the backups, stuff that with ansible I currently generate into /usr/local/sbin).

These scripts would be entirely generated from the services.restic.backups config and would reference sops secrets also from configuration.nix, so... I don't think it would make sense to make a package out of them?

What should I use to make these scripts? Should I use nixpkgs.writeShellApplication and then alter the PATH?

[-] [email protected] 24 points 10 months ago

Don't you mean a markdown editor?

Chances are, your favorite text editor can handle markdown well enough... unless you want WYSIWYG, in which case your text editor would still be good enough for the job and you would be wrong :-)

22
submitted 10 months ago by [email protected] to c/[email protected]

Since I need to run a few apps that won't work on LineageOS (because dumb developer security stance), I need to buy a "regular" android device that includes all the google "services".

Ideally, it should be a cheap second-hand phone that will still receive security updates for a long time.

Are there bands that are better (well, "less worse") than others from a privacy perspective?

[-] [email protected] 34 points 1 year ago

Its funny how podcasters and commenters seem to have taken Redhat's spin about "contributing value to the community" seriously, while to the rest of us the whole thing was obviously only about money (same as all the follow-ups from other parties... I would say "including Alma" but that would probably deserve its separate debate).

view more: ‹ prev next ›

gomp

joined 1 year ago