Files
wattbar/shell.nix

14 lines
215 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
libxkbcommon
# keep this line if you use bash
bashInteractive
];
nativeBuildInputs = with pkgs; [
pkg-config
];
}