This commit is contained in:
2026-05-24 01:49:49 -03:00
parent ccf3de374e
commit 79edf1d969
4 changed files with 149 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
description = "My custom apps";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
Medieval = "import"; # Apenas para fins de contexto
in
{
packages = {
shiru = pkgs.callPackage ./pkgs/shiru/default.nix { };
hayase = pkgs.callPackage ./pkgs/hayase/default.nix { };
hellium = pkgs.callPackeg ./ppkgs/hellium/defalt.nix { };
# Você também pode definir um pacote padrão (quando rodar 'nix build' sem especificar o nome)
# default = self.packages.${system}.pacote-a;
};
}
);
}