Nice, thanks for the heads-up!
Programmer in NYC
Nice, thanks for the heads-up!
Oh, very nice! Thanks for letting me know
I built a wireless Corne keyboard from a kit. It uses nice!nano controllers running ZMK. Previously when I used a Kinesis Advantage 2 I replaced its controller board with a KinT which uses a Teensy as its controller. Customizing the keyboard with custom firmware is much nicer than customizing in the OS. But it can be a commitment. Although there are some keyboards that come the reprogramming options out-of-the-box, like the Kinesis Advantage 360, the Moonlander, all of Keyboardio’s models.
The default Gnome installation on NixOS uses Wayland. And GDM too - it’s pretty much the same as other distros I’ve used. I’d guess the Plasma install option is also on Wayland.
I do have some issues with screen sharing. It generally works fine in Firefox and Discord. But screen sharing in Slack crashes every time.
I’ve been using Wayland for a while, but I remember two factors that might have held me back in another universe:
I’m not sure if those restrictions still apply. Luckily for the simplicity of my life I switched to Gnome (partially for Wayland support, partially for a simpler setup), and I switched to doing keyboard reconfiguration in hardware.
Oh interesting! That sounds like a nifty service if you set aside the trash.
rust-script
looks like a neat way to use Rust for scripting. But I was coincidentally reflecting on how helpful Nix is for handling the same problem, where I want to write scripts in a compiled language, but managing builds is a lot to deal with in an ad-hoc setting. I can pair my script with a Nix expression that gets checked into either my project repo, or my Home Manager dot files, and then I don’t have to think about rebuilding on changes or on new machines.
I have a recurring task called “rotate butter” scheduled once a month which seems about right to me.
I think these are ebooks. You can self-publish online for free so there isn’t much of a barrier to putting something out there, and hoping a few people fall for it and buy copies.
Yes, California, late 30s. I drove a manual transmission when I was a teenager. I was proud of how practiced I got with it. I don’t drive manual anymore, but my dad recently switched back after some decades driving automatic. He found out he’s out of practice lol
I’ve had ls
aliased to exa
for a while. So it looks like eza is a fork of exa? The git feature looks interesting.
Ok, I’m seeing overwhelming recommendations for local credit unions. Thanks everyone!
What frustrates me most about “new Trek” is that the characters don’t drive the story. Instead they have constant action, artificial tension, and over-the-top stakes. I love the characters on Discovery, but they’re not allowed to exist as themselves. OTOH SNW is primarily character-driven, as good Trek always has been.
I agree, especially with respect to batteries. It’s not about nuclear vs renewables, it’s about nuclear vs batteries. We can probably scale up energy storage to meet the world’s baseload needs - but we haven’t done that before. It might take a long time, we might hit some dead ends, and it might not end up being as cheap as we hope. But we have seen nuclear power on a large scale so we know what it takes. To be certain we can get zero carbon as soon as possible we should pursue every promising avenue.
Also note that the cost of, for example, solar energy has decreased 94% in the last 35 years because we have (rightly) put lots of resources into research and scaling up production. Meanwhile nuclear investment has been way down for decades. Maybe the cost of nuclear would come down with economies of scale, and newer designs.
This kinda showcases a weakness of Nebula - that is a Nebula video, but sharing the Youtube version is easier. Unless I don’t understand Nebula’s sharing feature?
That said my watching has gradually been shifting from Youtube to Nebula.
Edit: Oh right, the Nebula link. https://nebula.tv/videos/wendover-how-a-small-group-of-creators-built-a-150-million-business/
Actually I’d like to add a note about how much I appreciate infrastructure. It would be great if we could all equally own and control the Internet. But when you get down to it, societies pooling their efforts can do things that small, independent groups can’t, such as building tier 1 network backbones.
Looking at it another way, if you did have a global mesh network it would be made up of electronics that take tremendous systems of supply chains and factories to build and distribute. That’s sort of the same idea: large-scale infrastructure that small groups can’t pull off.
If I had my way I would keep the large-scale networks, but change the governance model to shift the primary organizational motivation from profit to human wellbeing.
I remember reading about a “guerilla wifi” mesh network in NYC, and I did a bit of research on connecting to that several years ago. It turned out I was too far away from Manhattan to be in range. But also from what I read a series of small-scale peer-to-peer connections don’t give you the low-latency or throughput of a good backbone.
This location though - in Little Italy, walking distance from all the trains, for under $2k… It’s honestly tempting.
The NixOS ideal is that every detail of the system is configured through Nix expressions so that the system is completely reproducible. But in practice there are some details you might want to configure directly.
With users.mutableUsers = false
you are in the “ideal” declarative mode where users and groups are supposed to be fully represented in configuration.nix
including passwords (or hashed passwords). In this mode the Nix config overrides everything in /etc/passwd
. If the Nix config doesn’t specify passwords I think the default is to leave the account without a password, disabling login for that account.
With users.mutableUsers = true
NixOS respects changes to user and group accounts made outside of configuration.nix
. Accounts configured through Nix will be added to /etc/password
if they aren’t already there. But NixOS won’t remove accounts, and won’t modify or unset passwords. In this mode the default of leaving the password unset makes sense because you’re expected to set a password by running passwd
. This is the typical choice because there are security problems with putting passwords in configuration.nix
.
You can set passwords in the Nix config using the password
, passwordFile
, hashedPassword
, or initialPassword
options. If mutableUsers
is true
these options only set the password the first time the user account is created. I checked to see if there are any options that implicitly disable mutable users, but I didn’t find any.
Yeah, I saw a HN post on that right after I posted this! I’ll definitely check it out. Thanks!