dotfiles/nix/chell.nix

31 lines
622 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... } :
{
boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # Cross-compilation for aarch64 through QEMU
environment.systemPackages = with pkgs; [
clang
clang-manpages
clang-tools
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";
2025-04-20 03:03:45 +02:00
services.nginx = {
enable = true;
virtualHosts."main.chell.org" = {
forceSSL = false;
locations."/" = {
root = "/var/www";
};
};
};
}