mastodon.sdf.org is part of the decentralized social network powered by Mastodon.
"I appreciate SDF but it's a general-purpose server and the name doesn't make it obvious that it's about art." - Eugen Rochko

Administered by:

Server stats:

2.6K
active users

Learn more

Jeezy<p>Based</p><p><a href="https://discourse.nixos.org/t/anduril-industries-electromagnetic-warfare-team-is-hiring/62569" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">discourse.nixos.org/t/anduril-</span><span class="invisible">industries-electromagnetic-warfare-team-is-hiring/62569</span></a></p><p><a href="https://hachyderm.io/tags/nixos" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>nixos</span></a></p>
Mark Crocker<p>Installed <a href="https://indieweb.social/tags/NixOS" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>NixOS</span></a> 24.11 on <a href="https://indieweb.social/tags/VirtualBox" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>VirtualBox</span></a> today. Apparently the demo image was deprecated <a href="https://nixos.org/manual/nixos/stable/release-notes#sec-release-24.11-incompatibilities" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">nixos.org/manual/nixos/stable/</span><span class="invisible">release-notes#sec-release-24.11-incompatibilities</span></a> in favor of using the standard ISO, but the installation instructions on the manual have not kept up. </p><p>Due to a corporate CA, just getting the installer to work at all <a href="https://discourse.nixos.org/t/nixos-in-corporate/50041/9" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">discourse.nixos.org/t/nixos-in</span><span class="invisible">-corporate/50041/9</span></a> was painful, especially due to one being DER, so, had to install openssl before adding CA certs with nix-shell</p><p>I only noticed the Don't reboot <a href="https://itsfoss.com/install-nixos-vm/#dont-reboot-but-turn-off-the-vm" rel="nofollow noopener noreferrer" target="_blank"><span class="invisible">https://</span><span class="ellipsis">itsfoss.com/install-nixos-vm/#</span><span class="invisible">dont-reboot-but-turn-off-the-vm</span></a> after it was too late 😭</p><p>1/2</p>

@pmidden So this is kinda like using aptitude instead of apt-get on a Debian distro? It still connects to the real nix repos, with their godlike rolling schedules and whatnot?

I'm what you might call a conservative about this sort of thing - I'm not against these side versions, but as long as the majority of the community is using regular nix, the most likely scenario is that I'm gonna stay there as well, strictly because it is easier to find help and guidance from the largest user community.

As long as they are not giving up essential things for their mainstream choice, of course, and it seems to me that nix decides what's mainstream.

I remain a highly enthusiastic #NixOS user but I know I am not the first to complain about their atrocious documentation practices. I am still working on fully understanding the beast, but once I do I expect I'll try to help out with that, as my main contribution.

Main thing is nixos.wiki has to fucking go. It's just fucking embarrassing.

@korenchkin Is nixos.wiki managed by non-NixOS or NixOS-hostile personnel?

Cause I tell ya, letting that link above just exist, with not so much as a "HEY DON'T READ THIS GO TO THE ONE AT NIXOS.ORG YOU NUMPTY" or something like that is pretty newbie-hostile.

Not just bad or clumsy management, but actively hostile. I dunno how much of my time that site just wasted, or how much it will waste before it is eradicated from the earth.

#NixOS #NixosCantDocument

Oh how I do love the docs at #NixOS.

I am attempting to do the "System wide vim/nvim configuration" example at https://nixos.wiki/wiki/Vim and rebuild is giving me this error:

error: attempt to call something which is not a function but a set

I read on one forum that removing the { } you see there, the set in question, from the override line, that would fix it, but then I of course get

error: expected a set but found a function

Since this is coming straight from the wiki and my syntax is correct, this is what you might call

Annoying

Vim - NixOS Wikinixos.wiki

Ok so I guess #ZFS and #NixOS seem to go together okay, I don't use it to boot, but at this moment I'm taking it on faith that I will either be able to create my volumes and set my mountpoints the way I have always and will always do it, or else that the NixOS way to do it will become clear once I'm up against it, which so far is what always happens.

I had high hopes for running @yunohost on this particular box, but there's just waaaaay too many weird problems trying to make it play nice with Cloudflare tunnels, including lots of "hey this is not very supported" in the docs. I don't want to receive this sort of traffic at my front door (real IP addy with firewall ports open) so now that I've kinda wrapped my brain around using a #CDN via tunnel, I'm pretty dead set on it.

Very open to considering other CDNs though, I have heard some things I cannot recall exactly about CF.

Yesterday the #H2O web server #NixOS module merged into #Nixpkgs with #HTTP3 / #QUIC support to be super easy.

An example of a simple reverse proxy usage, with compression + ACME + HTTP/2 + HTTP/3 + TLS redirect + Mozilla recommended TLS settings, would look like:

services.h2o = {
enable = true;
settings = {
compress = "ON";
http2-reprioritize-blocking-assets = "ON";
ssl-offload = "kernel";
};
hosts."example.org" = {
tls = {
policy = "force";
quic = { };
recommendations = "modern";
};
acme.enable = true;
settings = {
paths."/" = {
"proxy.reverse.url" = "http://127.0.0.1:42069";
};
};
};
}

@mahmoudajawad @codemonkeymike My apologies, I didn’t see your comment!

I’ve got a Surface Pro 6 that I tested out the surface kernel on with #NixOS. Like I had mentioned in an earlier comment, I highly recommend building your new NixOS configuration that includes the surface kernel on a more powerful desktop and allowing the awesome remote deployment feature of #nix to deploy it to the Surface…