mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-16 04:17:56 +08:00
25 lines
471 B
Nix
25 lines
471 B
Nix
{
|
|
description = "CLI to manage emails";
|
|
|
|
inputs = {
|
|
nixpkgs = {
|
|
url = "github:nixos/nixpkgs/staging-next";
|
|
};
|
|
fenix = {
|
|
url = "github:nix-community/fenix/monthly";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
pimalaya = {
|
|
url = "github:pimalaya/nix";
|
|
flake = false;
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs:
|
|
(import inputs.pimalaya).mkFlakeOutputs inputs {
|
|
shell = ./shell.nix;
|
|
default = ./default.nix;
|
|
};
|
|
}
|