Initial commit

This commit is contained in:
2026-02-28 22:43:58 +01:00
commit d7660146e7
4 changed files with 300 additions and 0 deletions

25
flake.nix Normal file
View File

@@ -0,0 +1,25 @@
{
description = "Custom packages for kiri's lux configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
perSystem =
{ pkgs, ... }:
{
packages = {
helium = pkgs.callPackage ./pkgs/helium.nix { };
zen-browser = pkgs.callPackage ./pkgs/zen-browser.nix { };
};
};
};
}