first commit

This commit is contained in:
2025-11-27 07:33:05 +04:00
commit 3fc947a884
5 changed files with 68 additions and 0 deletions

18
flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
description = "Мой flake с пакетами";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }: let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
packages.${system} = {
jellyfin-chromium = import ./pkgs/jellyfin-chromium {
inherit (pkgs) stdenv makeWrapper bash chromium lib;
};
};
};
}