move keymapviz to flake now

This commit is contained in:
Osman Faruk Bayram 2025-01-14 17:48:34 +03:00
parent 21b260ae37
commit 69891b5a84
2 changed files with 1 additions and 13 deletions

View file

@ -34,6 +34,7 @@
];
shellHook = ''
echo 'Welcome to my keyboard development.'
keymapviz -k crkbd keymap.c
'';
};
};

View file

@ -1,13 +0,0 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
keymapviz
];
shellHook = ''
keymapviz -k crkbd keymap.c
'';
}