diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-08-31 10:43:49 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-08-31 10:43:49 +1000 |
| commit | 49cabbd4cc5075ebd5cfa58866385fb1a6a7dab2 (patch) | |
| tree | f5f5fee9710b4e6eac04db95d868be3e77ac5956 /flake.nix | |
| parent | plugin/cim: safe async this (diff) | |
| download | caelestia-shell-49cabbd4cc5075ebd5cfa58866385fb1a6a7dab2.tar.gz caelestia-shell-49cabbd4cc5075ebd5cfa58866385fb1a6a7dab2.tar.bz2 caelestia-shell-49cabbd4cc5075ebd5cfa58866385fb1a6a7dab2.zip | |
nix: add debug package
Also use clangStdenv to build Use RelWithDebInfo for release builds
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -31,6 +31,7 @@ packages = forAllSystems (pkgs: rec { caelestia-shell = pkgs.callPackage ./nix { rev = self.rev or self.dirtyRev; + stdenv = pkgs.clangStdenv; quickshell = inputs.quickshell.packages.${pkgs.system}.default.override { withX11 = false; withI3 = false; @@ -39,6 +40,7 @@ caelestia-cli = inputs.caelestia-cli.packages.${pkgs.system}.default; }; with-cli = caelestia-shell.override {withCli = true;}; + debug = caelestia-shell.override {debug = true;}; default = caelestia-shell; }); |