mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate karabiner-elements
This commit is contained in:
@@ -15,7 +15,6 @@
|
|||||||
~/.config/fish: fish
|
~/.config/fish: fish
|
||||||
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
||||||
~/.config/gh/config.yml: github/gh/config.yml
|
~/.config/gh/config.yml: github/gh/config.yml
|
||||||
~/.config/karabiner: karabiner
|
|
||||||
~/.config/lf: lf
|
~/.config/lf: lf
|
||||||
~/.config/nvim: nvim
|
~/.config/nvim: nvim
|
||||||
~/.config/oatmeal: oatmeal
|
~/.config/oatmeal: oatmeal
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,6 +6,6 @@ nvim/plugin
|
|||||||
.vale/Readability
|
.vale/Readability
|
||||||
.vale/write-good
|
.vale/write-good
|
||||||
kitty/kitty.conf.bak
|
kitty/kitty.conf.bak
|
||||||
karabiner/automatic_backups
|
automatic_backups
|
||||||
Brewfile.lock.json
|
Brewfile.lock.json
|
||||||
fish/fish_variables
|
fish/fish_variables
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ in
|
|||||||
./asdf
|
./asdf
|
||||||
./bat
|
./bat
|
||||||
./ctags
|
./ctags
|
||||||
|
./karabiner
|
||||||
./lazydocker
|
./lazydocker
|
||||||
./lazygit
|
./lazygit
|
||||||
./ripgrep
|
./ripgrep
|
||||||
|
|||||||
11
nix/home/karabiner/default.nix
Normal file
11
nix/home/karabiner/default.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".config/karabiner/" = {
|
||||||
|
source = ./karabiner;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [
|
||||||
|
pkgs.karabiner-elements
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user