let's try this

This commit is contained in:
Maciej 2024-08-15 19:00:37 +03:00
parent 15be90691f
commit 2f44d12c4c
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
6 changed files with 221 additions and 1 deletions

View file

@ -0,0 +1,21 @@
{
description = "Setup Emacs Action";
inputs =
{
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ pkgs.shellcheck ];
};
}
);
}