dotfiles/nix/lamarr.nix
2025-04-20 03:05:51 +02:00

12 lines
284 B
Nix

{ config, lib, pkgs, ... }:
{
boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # Cross-compilation for aarch64 through QEMU
environment.systemPackages = with pkgs; [
bluez
bluez-tools
brightnessctl
];
services.xserver.xkb.options = "caps:escape,compose:94";
}