mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-05-26 09:50:19 +00:00
side note: you may also notice that I have removed the `github:` url for nixpkgs this is because it save a massive 15mb, is faster and more reliable than github See also: - <https://nix.dev/manual/nix/stable/protocols/tarball-fetcher#lockable-http-tarball-protocol> - <http://web.archive.org/web/20250806225139/https://nix.dev/manual/nix/2.28/protocols/tarball-fetcher#lockable-http-tarball-protocol>
55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
}:
|
|
let
|
|
forAllSystems =
|
|
function:
|
|
nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (
|
|
system: function nixpkgs.legacyPackages.${system}
|
|
);
|
|
in
|
|
{
|
|
packages = forAllSystems (pkgs: {
|
|
tranquil-pds = pkgs.callPackage ./default.nix { };
|
|
tranquil-pds-aarch64 = pkgs.pkgsCross.aarch64-multiplatform.callPackage ./default.nix { };
|
|
tranquil-frontend = pkgs.callPackage ./frontend.nix { };
|
|
default = self.packages.${pkgs.stdenv.hostPlatform.system}.tranquil-pds;
|
|
});
|
|
|
|
devShells = forAllSystems (pkgs: {
|
|
default = pkgs.callPackage ./shell.nix { };
|
|
});
|
|
|
|
nixosModules = {
|
|
default = self.nixosModules.tranquil-pds;
|
|
tranquil-pds =
|
|
{ lib, pkgs, ... }:
|
|
{
|
|
_file = "${self.outPath}/flake.nix#nixosModules.tranquil-pds";
|
|
imports = [ ./module.nix ];
|
|
config.services.tranquil-pds = {
|
|
package = self.packages.${pkgs.stdenv.hostPlatform.system}.tranquil-pds;
|
|
settings.frontend.package = self.packages.${pkgs.stdenv.hostPlatform.system}.tranquil-frontend;
|
|
};
|
|
};
|
|
};
|
|
|
|
checks.x86_64-linux.integration = import ./test.nix {
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
inherit self;
|
|
};
|
|
|
|
checks.aarch64-linux.integration = import ./test.nix {
|
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
|
inherit self;
|
|
};
|
|
};
|
|
}
|