summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-08-31 10:43:49 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-08-31 10:43:49 +1000
commit49cabbd4cc5075ebd5cfa58866385fb1a6a7dab2 (patch)
treef5f5fee9710b4e6eac04db95d868be3e77ac5956 /flake.nix
parentplugin/cim: safe async this (diff)
downloadcaelestia-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.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 789a401..239c2e8 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
});