Files
himalaya/flake.nix
T
Clément DOUIN 96d065c96b build: bump deps
2026-01-12 14:19:23 +01:00

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;
};
}