init wallpaper

This commit is contained in:
nora 2025-12-28 18:03:39 +01:00
commit 47cc8616f0
6 changed files with 983 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell rec {
packages = [ pkgs.pkg-config ];
buildInputs = with pkgs; [
wayland
libxkbcommon
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
}