vim notify, and devenv

This commit is contained in:
Nico
2025-10-25 13:43:27 +02:00
parent 2224c25e2b
commit 66767ebdfe
15 changed files with 904 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
{
description = "Love you";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
cursor.url = "github:omarcresp/cursor-flake/main";
};
outputs = { self, nixpkgs, flake-utils, cursor }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
devShell =
with pkgs; mkShell rec {
buildInputs = [
love
cursor.packages.${pkgs.system}.default
];
shellHook = ''
zsh
exit
'';
};
});
}