mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
fix: lint
This commit is contained in:
parent
7e6878af94
commit
564ad12def
6 changed files with 167 additions and 519 deletions
|
|
@ -17,7 +17,7 @@ with lib; let
|
|||
};
|
||||
mkMouse = name: sensitivity: {
|
||||
inherit name;
|
||||
sensitivity = sensitivity;
|
||||
inherit sensitivity;
|
||||
};
|
||||
in {
|
||||
imports = [
|
||||
|
|
@ -123,15 +123,17 @@ in {
|
|||
|
||||
# Names can be found with:
|
||||
# $ hyprctl devices -j | jq '.["keyboards"].[].name' -r | grep -vE "(system|consumer)-control"
|
||||
device = [
|
||||
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
|
||||
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
|
||||
] ++ map mkKeyboard [
|
||||
"splitkb-kyria-rev1"
|
||||
"zsa-technology-labs-inc-ergodox-ez-shine"
|
||||
"mattia-dal-ben-redox_wireless"
|
||||
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
|
||||
];
|
||||
device =
|
||||
[
|
||||
# $ hyprctl devices -j | jq '.["mice"].[].name' -r
|
||||
(mkMouse "logitech-usb-ps/2-optical-mouse" 0.2)
|
||||
]
|
||||
++ map mkKeyboard [
|
||||
"splitkb-kyria-rev1"
|
||||
"zsa-technology-labs-inc-ergodox-ez-shine"
|
||||
"mattia-dal-ben-redox_wireless"
|
||||
"zsa-technology-labs-inc-ergodox-ez-shine-keyboard"
|
||||
];
|
||||
|
||||
general = {
|
||||
gaps_in = 5;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue