My setup, with initial keymap

This commit is contained in:
bluepython508
2023-12-15 20:05:59 +00:00
parent 9cdf4ba738
commit 51858bf0ef
8 changed files with 454 additions and 0 deletions

7
flake.nix Normal file
View File

@@ -0,0 +1,7 @@
{
outputs = { self, nixpkgs }: {
devShells.x86_64-linux.default = let pkgs = nixpkgs.legacyPackages.x86_64-linux; in pkgs.mkShell {
packages = with pkgs; [ qmk clang clang-tools ];
};
};
}