Moved recipemd package

This commit is contained in:
Tim Schubert 2022-03-18 18:00:59 +01:00
parent 9be4ce9855
commit 2b3b2a603c
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
7 changed files with 23 additions and 31 deletions

View file

@ -8,6 +8,7 @@
, nixos-hardware
, nvd
, scripts
, recipemd
, ...
}@inputs:
(flake-utils.lib.eachDefaultSystem (system:
@ -44,22 +45,15 @@
$link/activate
'');
};
apps.recipemd = {
type = "app";
program = "${selfPkgs.recipemd}/bin/recipemd";
};
devShell = pkgs.callPackage ./shell.nix { };
packages = flake-utils.lib.flattenTree {
recipemd = pkgs.python3Packages.toPythonApplication python3Packages.recipemd;
};
})) // {
hmConfigurations = import ./home/configurations.nix {
inherit self nixpkgs home-manager nix-doom-emacs nvd scripts;
inherit self nixpkgs home-manager recipemd;
};
hmModules = import ./home/modules inputs;
nixosConfigurations = import ./nixos/configurations.nix {
nixosSystem = nixpkgs.lib.nixosSystem;
inherit self nixpkgs home-manager nixos-hardware nvd scripts homePage;
inherit self nixpkgs home-manager nixos-hardware nvd scripts homePage recipemd;
};
nixosModules = import ./nixos/modules inputs;
overlays = import ./overlays;