Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 1.83 KB

File metadata and controls

73 lines (54 loc) · 1.83 KB

halley-flake

Nix flake for Halley — spatial Wayland compositor.

Usage

{
  inputs.halley.url = "github:binarylinuxx/halley-flake";
}

Cachix

Prebuilt Linux packages are published to the public halley-flake Cachix cache. Configure it once before installing or building:

nix run nixpkgs#cachix -- use halley-flake
nix build .#halley-stable      # v0.4.0 release
nix build .#halley-unstable    # latest main branch
nix build .#default            # same as unstable

Packages

Package Source Extras
halley-stable v0.5.0 tag halley, halleyctl
halley-unstable main branch + xdg-desktop-portal-halley

Both install session files, systemd units, portal config, and D-Bus services.

Install

NixOS (flake)

{
  inputs.halley.url = "github:binarylinuxx/halley-flake";

  outputs = { self, nixpkgs, halley, ... }: {
    nixosConfigurations.mybox = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        halley.nixosModules.default
        {
          programs.halley = {
            enable = true;
            package = halley.packages.${pkgs.system}.halley-unstable; # optional, defaults to unstable
          };
        }
      ];
    };
  };
}

User profile (non-NixOS)

nix profile install github:binarylinuxx/halley-flake#halley-unstable

After installation, select Halley from your display manager session list, or run halley-session from a TTY.

Note

The unstable and dev packages are recommended for users who want the latest fixes, since Halley currently moves fast and releases may lag behind those fixes.

CONTRIBUTION

For contributing you must fork this repo and setup separated branch before submitting pull request for cachix required GitHub secret variable