framework: add keychron udev, add jujutsu

This commit is contained in:
tristan 2025-07-03 16:37:23 +01:00
parent 960165b769
commit 823b45d557
3 changed files with 10 additions and 2 deletions

View file

@ -74,8 +74,6 @@ in {
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.keyboard.zsa.enable = true;
networking.hostName = "zenix";
services.openssh.enable = true;

View file

@ -52,4 +52,8 @@
programs.lazygit = {
enable = true;
};
programs.jujutsu = {
enable = true;
};
}

View file

@ -75,4 +75,10 @@
enable = true;
indicator = true;
};
hardware.keyboard.zsa.enable = true;
# enable keychron keyboard configuration
services.udev.extraRules = ''
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="3434", ATTRS{idProduct}=="0e60", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl"
'';
}