Compare commits

..

No commits in common. "d33e03deb4f5efe647fc59dc0344090bb84d0b02" and "d8fcc8c35373b5af7ca2128dfd30fb09142a6201" have entirely different histories.

4 changed files with 1 additions and 32 deletions

View file

@ -232,7 +232,6 @@
crony.secrets.enable = true;
crony.boot.enable = true;
crony.ollama.enable = true;
crony.kanata.enable = true;
# Mount additional drive for games
fileSystems."/mnt/games" = {

View file

@ -289,11 +289,7 @@ in {
helpview-nvim.package = helpview-nvim;
};
treesitter.grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
qmljs
kdl
regex
];
extraPackages = with pkgs.vimPlugins; [nvim-treesitter-parsers.qmljs];
};
};
};

View file

@ -26,7 +26,6 @@
./secrets.nix
./oom.nix
./boot.nix
./kanata.nix
];
crony.bluetooth.enable = lib.mkDefault true;
@ -55,5 +54,4 @@
crony.secrets.enable = lib.mkDefault false;
crony.oom.enable = lib.mkDefault true;
crony.boot.enable = lib.mkDefault false;
crony.kanata.enable = lib.mkDefault false;
}

View file

@ -1,24 +0,0 @@
{
config,
lib,
...
}: {
options = {
crony.kanata.enable = lib.mkEnableOption "Enable and setup kanata";
};
config = lib.mkIf config.crony.kanata.enable {
hardware.uinput.enable = true;
services.kanata = {
enable = true;
keyboards."based".config = ''
(defsrc
caps)
(deflayermap (default-layer)
;; tap caps lock as caps lock, hold caps lock as left control
caps (tap-hold 100 100 esc lctl))
'';
};
};
}