add chell to dotfiles nix configuration

This commit is contained in:
Arne Dußin 2025-04-07 16:50:29 +02:00
parent c5111a4896
commit 7aa69e8675
5 changed files with 144 additions and 16 deletions

15
nix/chell.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
mangohud
obs-studio
];
hardware.graphics.extraPackages = with pkgs; [
vaapiVdpau
libvdpau-va-gl
];
hardware.keyboard.qmk.enable = true;
services.xserver.xkb.options = "caps:escape,compose:102";
}