-- Leo's gemini proxy

-- Connecting to thatit.be:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini

NixOS Asahi on MBP


I managed to install NixOS on my M1 MacBook Pro.


The issues I had been having have been resolved. Here’s a summary:


No hardware GPU drivers by default

Decent battery on hardware GPU drivers

Sound by default

Display and Keyboard Backlight works

Trackpad is too sensitive

All is well


The GPU


The biggest issue was the experimental GPU drivers which are not enabled by default. I had tried to enable them, and Xorg wouldn’t start after that. Battery improved dramatically after getting those on, much like Arch did with the asahi-edge-kernel and hardware GPU drivers.


Initially they didn’t work, and I’m not sure why the experimental drivers started working. I did do a nix-channel --update and a nixos-rebuild switch after some failed attempts to set hardware.asahi.useExperimentalGPUDriver = true. The initial failures were strange, I could just set that back to false and do a nixos-rebuild switch and Xorg would start back up.


Battery life


I need to measure it under load to come up with real numbers, I ran it for two hours and it dropped to 95% battery. Then I closed the lid and walked away for 7 hours and it dropped from 95% to 73%. But then over the next hour it went down to 65%.


Sound


I also have sound. The builtin speakers were not enabled under Arch, but they are under NixOS. I guess this is something that Fedora does now, too, and maybe even Arch if I had updated my system before switching to NixOS.


Backlights


Even more strangely, I can control both the display backlight and the keyboard backlight. When I started with Arch Asahi this wasn’t possible. I didn’t even see an announcement about this, I just have it.


Trackpad/Touchpad


I still have some sensitivity issues with the touchpad. To get around these, I’ve written a script that disables the touchpad when I hit the app key on the keyboard. It’s vaguely where the disable touchpad key is on some other systems. Annoyingly the device name of the trackpad and Keyboard are identical. I came up with a convoluted grep to extract the numerical device ID.


DEVID="$(xinput list |
    grep -o 'Trackpad.*id=\([0-9]\+\).*pointer' |
    grep -Po '(?<=id=)[0-9]+')"

Actually, here’s the entirety of that script, no shebang because I call bash on it from sxhkd bindings.


DEVID="$(xinput list | grep -o 'Trackpad.*id=\([0-9]\+\).*pointer' | grep -Po '(?<=id=)[0-9]+')"

disabled(){
    xinput list-props ${DEVID} | grep '(129):.*0'
}

if disabled ; then
    xinput enable ${DEVID}
else
    xinput disable ${DEVID}
fi

Conclusion


Overall, I’m pretty happy with it.



the problems I was having, original impressions intact


Battery life sucks

can’t launch Wayland

Chinese input ~is missing~ suddenly appeared


I can’t launch Wayland. This is only a problem because of the error, I don’t generally use Wayland as my WM of choice doesn’t work under Wayland.


I suspect I don’t have the Asahi beta kernel stuff that I would otherwise have from the asahi-linux-edge.


~Chinese input isn’t working. I don’t have the Pinyin keyboard that I had under Arch, or on my x86 NixOS box. I have the same packages installed, but it’s missing when I run fcitx5-configtool.~


I don’t know why, but now the Pinyin entry is present in fcitx-configtool and I’m able to input Chinese in most things. Kitty won’t let me input Chinese. I’m not sure why it works one one of my systems but not others. Same configs everywhere.


The touch pad keeps getting accidentally triggered, but I can disable it with xinput.


Tags


#nixos

#index

#asahi


Navigation


index

tags

prev ⏰

⏰ next


updated: 2024-03-21 07:26:29


generated: 2024-05-03

-- Response ended

-- Page fetched on Mon May 6 12:14:52 2024