feat(workspaces): add favorites and hidden options

This commit is contained in:
yavko
2023-05-09 02:05:26 -07:00
committed by Jake Stanger
parent 7e877f6631
commit 9f65cf293d
4 changed files with 458 additions and 267 deletions

View File

@@ -34,7 +34,10 @@
rust-overlay.overlays.default
];
};
mkRustToolchain = pkgs: pkgs.rust-bin.stable.latest.default;
mkRustToolchain = pkgs:
pkgs.rust-bin.stable.latest.default.override {
extensions = ["rust-src"];
};
in {
overlays.default = final: prev: let
rust = mkRustToolchain final;
@@ -116,6 +119,14 @@
gtk-layer-shell
pkg-config
openssl
gdk-pixbuf
glib
glib-networking
shared-mime-info
gnome.adwaita-icon-theme
hicolor-icon-theme
gsettings-desktop-schemas
libxkbcommon
];
RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/library";