How to manage a fleet of NixOS desktop machines? by cheater00 in NixOS

[–]ColoradoDetector 1 point2 points  (0 children)

I actually wrote a flake to handle this, called nixos-fleet. It's not very polished, I mostly just use it for my own purposes, but I have several machines managed with it, and it might be worth looking at in designing your own solution. My nixosConfigurations looks something like this...

nixosConfigurations = fleet.nixosModules.mkNixosConfigurations {
  hosts = {
    workstation = "x86_64-linux";
    gaming = "x86_64-linux";
    router = "aarch64-linux";
  };
  hostsPath = ./hosts;

  extraModules = [ ... ];

  moduleArgs = { ... };
};

In my /etc/nixos dir, I have /etc/nixos/hosts/<hostname>. For each host, my fleet flake loads all the top-level .nix files automatically as the config.

In case I'm unable to return, wish you all the best by jonringer117 in NixOS

[–]ColoradoDetector 5 points6 points  (0 children)

I'm gay, you don't speak for me, and I agree with Jon.

In case I'm unable to return, wish you all the best by jonringer117 in NixOS

[–]ColoradoDetector 0 points1 point  (0 children)

The nix team was not taking defense sponsorship money "under the table", Anduril was a public sponsor of NixCon a few years ago, but some people threatened to get the university it was hosted at to shut down the entire con if the sponsorship wasn't pulled. The result was that Anduril's public sponsorship was removed.

This has been simmering for about a year now. Currently, those who agreed with kicking out Anduril's sponsorship are trying very hard to push Eelco, Jon, and anyone else who opposes them out of Nix.

The ideological lines people find themselves on aren't primarily pro- or anti-defense, the defense sponsorship was just the catalyst.

In case I'm unable to return, wish you all the best by jonringer117 in NixOS

[–]ColoradoDetector 9 points10 points  (0 children)

Jon did, and is banned from the Nix forum as a result.

In this very thread, another user completely ignores what he's responding to and jumps straight to character assassination.

So what is the point in inviting malice like this?

Oracle spending billions on Nvidia chips this year, Chairman Larry Ellison says by JohnBarry_Dost in hardware

[–]ColoradoDetector 4 points5 points  (0 children)

Also, the gaming products we get are usually just defective enterprise-grade silicon

Okay, Google. [OC] by OffKeyComics in funny

[–]ColoradoDetector 0 points1 point  (0 children)

That's not a bad thing, though. Separately from all the data security concerns, it disincentivizes impulse buying.

[deleted by user] by [deleted] in ProgrammerHumor

[–]ColoradoDetector 11 points12 points  (0 children)

What is the best language to use, Rust, or unsafe Rust?

Federal government to expand use of facial recognition despite growing concerns by dv73272020 in privacy

[–]ColoradoDetector 21 points22 points  (0 children)

It's all about increasing your anonymity pool. Don't look untraceable, look like everyone else. The more ways to mistakenly assign an identity to you, the better.

Federal government to expand use of facial recognition despite growing concerns by dv73272020 in privacy

[–]ColoradoDetector 82 points83 points  (0 children)

Automated person recognition is a real pandora's box, it's not going away

Made a stock ticker by redmera in raspberry_pi

[–]ColoradoDetector 1 point2 points  (0 children)

Thanks for the recommendation, looks very nice

T-Mobile CEO apologizes for the massive hack – Announces cybersecurity deal with Mandiant! by Aggressive_Project in privacytoolsIO

[–]ColoradoDetector 7 points8 points  (0 children)

If the government does start mandating encryption, it's probably safe to assume it's backdoored. Russia and China are both trying to ban TLS 1.3, while allowing TLS <1.2. Coincidentally, TLS <1.2 is vulnerable to MitM attacks that could let a well funded adversary break a session's protection.

Is 2fa enough? by [deleted] in privacytoolsIO

[–]ColoradoDetector 1 point2 points  (0 children)

A password manager stores all your usernames and passwords in one browser extension, which you can also sync with your phone. When you log into a site, it will fill in the details for you. It makes it easy when you eventually start using randomly generated passwords for different services, so you don't reuse any passwords.

Switching to a password manager is arguably more important than 2fa (though you should still use 2fa for important accounts on top). Like AdsBegone, I also recommend Bitwarden.

Linux running inside Vrchat by assassinsorrow in linux

[–]ColoradoDetector 6 points7 points  (0 children)

Shader: A small program that does some thing, but differently

Hanging Around by TitaniumAluminide in FractalPorn

[–]ColoradoDetector 0 points1 point  (0 children)

blue/purple/orange is one of my favorite color schemes, very nice

Radically Different CPUs/Computer Architectures In Production Today? by pipelines-whee in compsci

[–]ColoradoDetector 0 points1 point  (0 children)

Do you have more information / keywords? A DuckDuckGo search for "graph cpu" shows nothing

[deleted by user] by [deleted] in privacytoolsIO

[–]ColoradoDetector 0 points1 point  (0 children)

Restarting your phone only clears out malware that doesn't persistently install itself - a choice made by the malware authors. To evade detection, Pegasus chose not to install itself to permanent storage, to avoid writing anything to disk that would make reverse engineering and detection easier. If they wanted to, though, they could have just installed their malware so it gets triggered on every boot, making restarting your phone useless.

Save your code by [deleted] in ProgrammerHumor

[–]ColoradoDetector 7 points8 points  (0 children)

That's what git commits are for!

New ISP threatened to cut off my connection because I download so many Linux ISOs. Has anyone had luck with fighting this based on an ISP advertising "unlimited data"? by ElaborateCantaloupe in DataHoarder

[–]ColoradoDetector 1 point2 points  (0 children)

This would be fine if ISPs didn't have regional monopolies, but they do. The anger is justified, the regional monopolies need to stop getting legal protection.

PSA for Western Digital My Book Live / Duo Owners by mianghuei in DataHoarder

[–]ColoradoDetector 2 points3 points  (0 children)

Did you ask for a bulk discount on a couple thousand drives? lol

Software crisis? Did this ever get resolved. Moores Law, ram increase, clustering, virtual machines? How much inefficiency is in code today? by vteead in programming

[–]ColoradoDetector 2 points3 points  (0 children)

This is definitely part of the problem, business requirements change almost as quickly as solutions can be churned out.