brewery
notashelf /
7ccb21af79777e31a67a668f2efc18d7be603241

chroma

public

Lightweight wallpaper daemon for Wayland

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/chroma.git
flake.nixNix21 lines549 B
1
{
2
  description = "Wayland Wallpaper Daemon";
3
  inputs.nixpkgs.url = "github:NixOS/nixpkgs?ref?nixos-unstable";
4
  outputs = {nixpkgs, ...}: let
5
    systems = ["x86_64-linux" "aarch64-linux"];
6
    forAllSystems = f:
7
      builtins.listToAttrs (map (system: {
8
          name = system;
9
          value = f system;
10
        })
11
        systems);
12
13
    pkgsFor = system: nixpkgs.legacyPackages.${system};
14
  in {
15
    devShells = forAllSystems (system: let
16
      pkgs = pkgsFor system;
17
    in {
18
      default = pkgs.callPackage ./shell.nix {};
19
    });
20
  };
21
}