build(nix): add package derivation for tshell

This commit is contained in:
tux
2026-08-24 20:38:17 +05:30
parent 51906373aa
commit 4453c280bf
2 changed files with 76 additions and 1 deletions

View File

@@ -42,9 +42,16 @@
};
};
in
{
rec {
formatter.${system} = treefmtEval.config.build.wrapper;
packages.${system} = {
tshell = pkgs.callPackage ./package.nix {
inherit quickshellWithModules;
};
default = packages.${system}.tshell;
};
devShells.${system}.default = pkgs.mkShell {
packages = [
quickshellWithModules