initial commit

This commit is contained in:
outfoxxed 2024-11-04 01:38:45 -08:00
commit b6f5b0b03b
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
6 changed files with 87 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { nixpkgs, ... }: let
forEachSystem = fn: nixpkgs.lib.genAttrs
[ "x86_64-linux" "aarch64-linux" ]
(system: fn system nixpkgs.legacyPackages.${system});
in {
overlays = {
tree-sitter-qmljs = import ./qml-grammar-overlay.nix;
};
packages = forEachSystem (system: pkgs: rec {
qml-ts-mode = pkgs.emacsPackages.callPackage ./emacs-qml-ts-mode.nix {};
});
};
}