From 69891b5a84bba4a250b66e5f22699d0bc22a8254 Mon Sep 17 00:00:00 2001 From: osbm Date: Tue, 14 Jan 2025 17:48:34 +0300 Subject: [PATCH] move keymapviz to flake now --- flake.nix | 1 + shell.nix | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 shell.nix diff --git a/flake.nix b/flake.nix index b428e70..9275d85 100644 --- a/flake.nix +++ b/flake.nix @@ -34,6 +34,7 @@ ]; shellHook = '' echo 'Welcome to my keyboard development.' + keymapviz -k crkbd keymap.c ''; }; }; diff --git a/shell.nix b/shell.nix deleted file mode 100644 index a3d33f6..0000000 --- a/shell.nix +++ /dev/null @@ -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 - ''; -}