This commit is contained in:
Zacharias-Brohn
2026-02-06 17:44:02 +01:00
parent 76c206ed91
commit e5718b58ab
2 changed files with 14 additions and 3 deletions
+11 -1
View File
@@ -23,7 +23,17 @@
formatter = forAllSystems (pkgs: pkgs.nixfmt);
packages = forAllSystems (pkgs: rec {
app2unit = pkgs.callPackage ./nix/app2unit.nix { inherit pkgs; };
zshell = pkgs.callPackage ./nix {
rev = self.rev or self.dirtyRev;
stdenv = pkgs.clangStdenv;
quickshell = inputs.quickshell.packages.${pkgs.stdenv.hostPlatform.system}.default.override {
withX11 = false;
withI3 = false;
};
app2unit = pkgs.callPackage ./nix/app2unit.nix { inherit pkgs; };
};
default = zshell;
});
devShells = forAllSystems (pkgs: {