initial commit

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

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
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 {
packages = forEachSystem (system: pkgs: rec {
tree-sitter-qmljs = pkgs.callPackage ./qml-grammar-overlay.nix {};
qml-ts-mode = pkgs.emacsPackages.callPackage ./emacs-qml-ts-mode.nix {};
});
};
}