Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 213 B view raw
1{ config, pkgs, ... }: 2 3{ 4 services.udev.packages = [ pkgs.dolphin-emu ]; 5 6 boot.extraModulePackages = [ 7 config.boot.kernelPackages.gcadapter-oc-kmod 8 ]; 9 10 boot.kernelModules = [ 11 "gcadapter_oc" 12 ]; 13}