initial
This commit is contained in:
49
flake.nix
Normal file
49
flake.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
zmk-nix = {
|
||||
url = "github:lilyinstarlight/zmk-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
zmk-nix,
|
||||
}: let
|
||||
forAllSystems = nixpkgs.lib.genAttrs (nixpkgs.lib.attrNames zmk-nix.packages);
|
||||
in {
|
||||
packages = forAllSystems (system: rec {
|
||||
default = firmware;
|
||||
|
||||
firmware = zmk-nix.legacyPackages.${system}.buildSplitKeyboard {
|
||||
name = "firmware";
|
||||
|
||||
src = nixpkgs.lib.sourceFilesBySuffices self [".board" ".cmake" ".conf" ".defconfig" ".dts" ".dtsi" ".json" ".keymap" ".overlay" ".shield" ".yml" "_defconfig"];
|
||||
|
||||
board = "nice_nano_v2";
|
||||
shield = "hillside46_%PART%";
|
||||
extraCmakeFlags = [
|
||||
"-DCONFIG_ZMK_POINTING=y"
|
||||
];
|
||||
|
||||
zephyrDepsHash = "sha256-yRzN+df/kzHEOWTiQLRLsPNRBDM4fV5qmLa6SevYKxc=";
|
||||
|
||||
meta = {
|
||||
description = "ZMK firmware";
|
||||
license = nixpkgs.lib.licenses.mit;
|
||||
platforms = nixpkgs.lib.platforms.all;
|
||||
};
|
||||
};
|
||||
|
||||
flash = zmk-nix.packages.${system}.flash.override {inherit firmware;};
|
||||
update = zmk-nix.packages.${system}.update;
|
||||
});
|
||||
|
||||
devShells = forAllSystems (system: {
|
||||
default = zmk-nix.devShells.${system}.default;
|
||||
});
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user