brewery
notashelf /
b4fcdab7f48a0a954d51cee9750f03b70ea7f548

chroma

public

Lightweight wallpaper daemon for Wayland

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