From 0e00a3a721a632b7e2fc19e923150ceec3281031 Mon Sep 17 00:00:00 2001 From: MeexReay Date: Sun, 31 Aug 2025 22:43:37 +0300 Subject: [PATCH] build: fix flake nix by adding libadwaita --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3aa87a1..9faec03 100644 --- a/flake.nix +++ b/flake.nix @@ -10,7 +10,7 @@ outputs = { self, nixpkgs, rust-overlay, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let - devDeps = with pkgs; [ pkg-config openssl gtk4 pango libnotify ]; + devDeps = with pkgs; [ pkg-config openssl gtk4 pango libnotify libadwaita ]; cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml); overlays = [ (import rust-overlay) ]; pkgs = import nixpkgs {