Add ZSA keyboard udev rules

This commit is contained in:
2026-07-24 14:26:51 +02:00
parent 99cd12bbc6
commit 359526182e
2 changed files with 12 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
{
config.flake.factory.zsa-moonlander = user: { pkgs, ... }: {
users.users.${user}.extraGroups = [ "plugdev" ];
hardware.keyboard.zsa.enable = true;
};
}
+3 -1
View File
@@ -9,9 +9,11 @@
(self.factory.user "weckyy702" true)
{
nixos.weckyy702 = {
imports = with self.modules.nixos; [
imports = with self.modules.nixos;
with self.factory; [
kanata
catppuccin
(zsa-moonlander "weckyy702")
];
users.users.weckyy702.extraGroups = [ "networkmanager" "dialout" ];