1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 18:51:04 +02:00

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
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
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";