chroma/flake.nix
NotAShelf 7ccb21af79
nix: bump inputs
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I1889ab776432fbbbaa228a09c8acf4286a6a6964
2026-01-31 15:15:14 +03:00

21 lines
549 B
Nix

{
description = "Wayland Wallpaper Daemon";
inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref?nixos-unstable";
outputs = {nixpkgs, ...}: let
systems = ["x86_64-linux" "aarch64-linux"];
forAllSystems = f:
builtins.listToAttrs (map (system: {
name = system;
value = f system;
})
systems);
pkgsFor = system: nixpkgs.legacyPackages.${system};
in {
devShells = forAllSystems (system: let
pkgs = pkgsFor system;
in {
default = pkgs.callPackage ./shell.nix {};
});
};
}