chore: Add nix config

This commit is contained in:
DashieTM 2024-04-15 18:21:38 +02:00
parent ee31829897
commit ebd4bba4ea
2 changed files with 18 additions and 0 deletions

2
.envrc Normal file
View file

@ -0,0 +1,2 @@
#!/usr/bin/env bash
use nix

16
shell.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
nativeBuildInputs = [
pkg-config
];
buildInputs = [
dbus
gtk4
libadwaita
pulseaudio
];
}