44 lines
921 B
Nix
44 lines
921 B
Nix
{
|
|
description = "MarleyVim";
|
|
|
|
outputs = inputs:
|
|
inputs.snowfall-lib.mkFlake {
|
|
inherit inputs;
|
|
|
|
src = ./.;
|
|
|
|
snowfall = {
|
|
namespace = "marleyvim";
|
|
};
|
|
|
|
# channels-config.allowUnfree = true;
|
|
|
|
alias.packages.default = "neovim";
|
|
|
|
overlays = [inputs.nixvim.overlays.default];
|
|
|
|
outputs-builder = channels: {
|
|
formatter = channels.nixpkgs.nixfmt-rfc-style;
|
|
};
|
|
};
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
snowfall-lib = {
|
|
url = "github:snowfallorg/lib";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixvim = {
|
|
url = "github:nix-community/nixvim";
|
|
inputs.nixpkgs.follows = "unstable";
|
|
};
|
|
|
|
neovim-nightly = {
|
|
url = "github:nix-community/neovim-nightly-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
}
|