mezza.biz/flake.nix

32 lines
835 B
Nix
Raw Normal View History

2023-02-25 19:38:19 +00:00
{
2024-02-20 16:17:50 +00:00
description = "mezza.biz";
2023-02-25 19:38:19 +00:00
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
devshell.url = "github:numtide/devshell";
devshell.inputs.flake-utils.follows = "flake-utils";
devshell.inputs.nixpkgs.follows = "nixpkgs";
};
2024-02-20 16:17:50 +00:00
outputs = { self, flake-utils, devshell, nixpkgs }:
2023-02-25 19:38:19 +00:00
flake-utils.lib.simpleFlake {
inherit self nixpkgs;
2024-02-20 16:17:50 +00:00
name = "mezza.biz";
preOverlays = [ devshell.overlays.default ];
2023-02-25 19:38:19 +00:00
shell = { pkgs }:
pkgs.devshell.mkShell {
# Add additional packages you'd like to be available in your devshell
# PATH here
devshell.packages = with pkgs; [
deno
];
bash.extra = ''
export NVIM_USE_DENOLS=1
'';
};
};
}