Enabling the EURKey Layout on NixOS with GNOME and Home-Manager
May 18, 2024•122 words
I recently switched the management of my PC to NixOS and Home-Manager. While everything went smoothly, I noticed that the EURKey Layout was missing in GNOME. It took me some time to enable it again, so here’s how you can do it.
Prerequisites
This guide assumes you have a fully working GNOME setup and Home-Manager configured.
Steps
Add the following to your home.nix file:
dconf.settings = {
"org/gnome/desktop/input-sources" = {
show-all-sources = true;
sources = [
...
Read post