From f4189c74650238b00920fe5d655d10b05e1c2af7 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 4 Oct 2025 10:10:49 -0600 Subject: [PATCH] add development for COSMIC --- dev/rust/flake.lock | 6 +++--- dev/rust/flake.nix | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/dev/rust/flake.lock b/dev/rust/flake.lock index 71546b3..0810d2d 100644 --- a/dev/rust/flake.lock +++ b/dev/rust/flake.lock @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1747744144, - "narHash": "sha256-W7lqHp0qZiENCDwUZ5EX/lNhxjMdNapFnbErcbnP11Q=", + "lastModified": 1759381078, + "narHash": "sha256-gTrEEp5gEspIcCOx9PD8kMaF1iEmfBcTbO0Jag2QhQs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2795c506fe8fb7b03c36ccb51f75b6df0ab2553f", + "rev": "7df7ff7d8e00218376575f0acdcc5d66741351ee", "type": "github" }, "original": { diff --git a/dev/rust/flake.nix b/dev/rust/flake.nix index bdabff1..3852eb2 100644 --- a/dev/rust/flake.nix +++ b/dev/rust/flake.nix @@ -20,7 +20,15 @@ }; in { devShells.default = pkgs.mkShell { - packages = with pkgs; [cargo rustc]; + packages = with pkgs; [ + cargo + rustc + pkg-config + openssl + libxkbcommon + wayland + wayland-protocols + ]; }; } );