Configure kanata for voyager (disable it)
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
(defcfg
|
||||||
|
linux-dev-names-exclude (
|
||||||
|
"ZSA Technology Labs Voyager"
|
||||||
|
"ZSA Technology Labs Voyager Consumer Control"
|
||||||
|
"ZSA Technology Labs Voyager Keyboard"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
(deflocalkeys-linux
|
(deflocalkeys-linux
|
||||||
ImpPt 99
|
ImpPt 99
|
||||||
º 41
|
º 41
|
||||||
|
|||||||
@@ -66,14 +66,7 @@ in
|
|||||||
server.vatnajokull.enable = true;
|
server.vatnajokull.enable = true;
|
||||||
|
|
||||||
# - Keyboards -
|
# - Keyboards -
|
||||||
system.kanata = {
|
system.kanata.enable = true;
|
||||||
enable = true;
|
|
||||||
devices = [
|
|
||||||
"/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
|
||||||
"/dev/input/by-path/pci-0000:00:14.0-usb-0:9:1.0-event-kbd"
|
|
||||||
"/dev/input/by-path/pci-0000:00:14.0-usbv2-0:9:1.0-event-kbd"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
system.devices.voyager.enable = true;
|
system.devices.voyager.enable = true;
|
||||||
|
|
||||||
# - Desktop ----------------------------------
|
# - Desktop ----------------------------------
|
||||||
|
|||||||
25
modules/app/zen-browser.nix
Normal file
25
modules/app/zen-browser.nix
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{ config, lib, pkgs, inputs, system, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.samfelag.modules.app.zen-browser;
|
||||||
|
i3Cfg = config.samfelag.modules.desktop.wm.i3;
|
||||||
|
hyprCfg = config.samfelag.modules.desktop.wm.hyprland;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.samfelag.modules.app.zen-browser = {
|
||||||
|
enable = lib.mkEnableOption "zen-browser";
|
||||||
|
};
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
inputs.zen-browser.packages."${system}".default
|
||||||
|
];
|
||||||
|
|
||||||
|
samfelag.modules.desktop.wm.i3.extraKeybindings = lib.mkIf i3Cfg.enable {
|
||||||
|
"${i3Cfg.mod}+Shift+i" = "exec ${pkgs.zen-browser}/bin/zen";
|
||||||
|
};
|
||||||
|
|
||||||
|
samfelag.modules.desktop.wm.hyprland.extraKeybindings = lib.mkIf hyprCfg.enable [
|
||||||
|
"${hyprCfg.mod} SHIFT, i, exec, ${pkgs.zen-browser}/bin/zen"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -6,11 +6,6 @@ in
|
|||||||
{
|
{
|
||||||
options.samfelag.modules.system.kanata = {
|
options.samfelag.modules.system.kanata = {
|
||||||
enable = lib.mkEnableOption "kanata";
|
enable = lib.mkEnableOption "kanata";
|
||||||
devices = lib.mkOption {
|
|
||||||
type = lib.types.listOf lib.types.str;
|
|
||||||
default = [];
|
|
||||||
description = "Devices to use for kanata";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
@@ -22,7 +17,6 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
keyboards = {
|
keyboards = {
|
||||||
internalKeyboard = {
|
internalKeyboard = {
|
||||||
devices = cfg.devices;
|
|
||||||
extraDefCfg = "process-unmapped-keys yes";
|
extraDefCfg = "process-unmapped-keys yes";
|
||||||
configFile = ../../config/kanata/kanata.kbd;
|
configFile = ../../config/kanata/kanata.kbd;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user