2022-02-27 15:07:26 +03:00
|
|
|
{
|
|
|
|
description = "Zellij, a terminal workspace with batteries included";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
|
|
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
rust-overlay.inputs.flake-utils.follows = "flake-utils";
|
|
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
|
|
flake-compat.flake = false;
|
2022-03-06 16:28:54 +03:00
|
|
|
crate2nix.url = "github:kolloch/crate2nix";
|
|
|
|
crate2nix.flake = false;
|
2022-02-27 15:07:26 +03:00
|
|
|
};
|
|
|
|
|
2022-07-29 23:31:29 +03:00
|
|
|
outputs = {...} @ args: import .nix/zellij.nix args;
|
2022-02-27 15:07:26 +03:00
|
|
|
}
|