aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/ha
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
commitc52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c (patch)
treee8b947710b467b32740598ff574982097836f66c /modules/by-name/ha
parentchore(pkgs/yt): 1.2.1 -> 1.3.0 (diff)
downloadnixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.zip
refactor(modules): Move all system modules to `by-name`
From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules.
Diffstat (limited to 'modules/by-name/ha')
-rw-r--r--modules/by-name/ha/hardware/module.nix80
1 files changed, 80 insertions, 0 deletions
diff --git a/modules/by-name/ha/hardware/module.nix b/modules/by-name/ha/hardware/module.nix
new file mode 100644
index 00000000..850416b7
--- /dev/null
+++ b/modules/by-name/ha/hardware/module.nix
@@ -0,0 +1,80 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: let
+ cfg = config.soispha.hardware;
+in {
+ options.soispha.hardware = {
+ enable = lib.mkEnableOption "the various hardware dependend things (and graphics drivers)";
+ moonlander = {
+ enableLiveTraining = lib.mkEnableOption "udev rules for live training";
+ enableFlashing = lib.mkEnableOption "udev rules for firmware flashing";
+ };
+
+ cpuType = lib.mkOption {
+ type = lib.types.enum ["amd" "intel"];
+ description = ''
+ The manuafacturer of the used cpu.
+
+ This is used to enable, for example, the correct microcode updates.
+ '';
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ hardware = {
+ cpu.amd.updateMicrocode = cfg.cpuType == "amd";
+ cpu.intel.updateMicrocode = cfg.cpuType == "intel";
+
+ # This is enabled manually to support older firmware.
+ keyboard.zsa.enable = false;
+
+ nitrokey.enable = true;
+ onlykey.enable = false;
+
+ graphics = {
+ enable = true;
+ extraPackages = builtins.attrValues {
+ inherit
+ (pkgs)
+ vaapiVdpau
+ libvdpau-va-gl
+ ;
+ };
+ };
+ };
+
+ # TODO: Remove the support for the old keyboards <2024-05-16>
+ services.udev.extraRules =
+ lib.strings.optionalString cfg.moonlander.enableLiveTraining ''
+ # Rules for Oryx web flashing and live training
+ KERNEL=="hidraw*", ATTRS{idVendor}=="16c0", MODE="0664", GROUP="plugdev"
+ KERNEL=="hidraw*", ATTRS{idVendor}=="3297", MODE="0664", GROUP="plugdev"
+
+ # Legacy rules for live training over webusb (Not needed for firmware v21+)
+ # Rule for all ZSA keyboards
+ SUBSYSTEM=="usb", ATTR{idVendor}=="3297", GROUP="plugdev"
+ # Rule for the Moonlander
+ SUBSYSTEM=="usb", ATTR{idVendor}=="3297", ATTR{idProduct}=="1969", GROUP="plugdev"
+ # Rule for the Ergodox EZ
+ SUBSYSTEM=="usb", ATTR{idVendor}=="feed", ATTR{idProduct}=="1307", GROUP="plugdev"
+ # Rule for the Planck EZ
+ SUBSYSTEM=="usb", ATTR{idVendor}=="feed", ATTR{idProduct}=="6060", GROUP="plugdev"
+ ''
+ + lib.strings.optionalString cfg.moonlander.enableFlashing
+ ''
+ # Wally Flashing rules for the Ergodox EZ
+ ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", ENV{ID_MM_DEVICE_IGNORE}="1"
+ ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789A]?", ENV{MTP_NO_PROBE}="1"
+ SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789ABCD]?", MODE:="0666"
+ KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", MODE:="0666"
+
+ # Wally Flashing rules for the Moonlander and Planck EZ
+ SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="df11", \
+ MODE:="0666", \
+ SYMLINK+="stm32_dfu"
+ '';
+ };
+}