nushell, helium + pwas, niri session management

This commit is contained in:
atagen 2026-03-03 00:26:21 +11:00
parent cb72b47661
commit 3b3bfb6b39
21 changed files with 816 additions and 464 deletions

View file

@ -24,10 +24,11 @@ pkgs.stdenv.mkDerivation {
meson
optipng
ninja
dart-sass
;
inherit (pkgs.nodePackages)
sass
;
# inherit (pkgs.nodePackages)
# sass
# ;
inherit (pkgs.gtk4) dev;
inherit rendersvg;
};

View file

@ -1,18 +0,0 @@
{
rustPlatform,
fetchFromGitHub,
...
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "hush";
version = "0.1.4-git";
src = fetchFromGitHub {
owner = "hush-shell";
repo = "hush";
rev = "560c33a2dc8bf967b4fb0c80e3f18ca8934615ff";
hash = "sha256-kJ1o236xvNTPiLPWPgpQLLfEAXCGT419UgVWmwVHBYA=";
};
doCheck = false;
cargoLock.lockFile = "${finalAttrs.src}/Cargo.lock";
})