Fork of github:ninelore/nixpkgs-cosmic-unstable
Find a file
2025-11-29 03:11:45 +00:00
.github build(deps): bump actions/checkout from 5 to 6 2025-11-24 00:34:22 +00:00
lib finalize: ci and fixes 2025-08-28 20:19:22 +02:00
pkgs cosmic-workspaces-epoch: epoch-1.0.0-beta.8-unstable-2025-11-25 -> epoch-1.0.0-beta.8-unstable-2025-11-27 2025-11-28 03:13:29 +00:00
.gitignore fixups vol. 2 2025-08-29 01:51:07 +02:00
.mergify.yml ci(Mergify): configuration update 2025-08-29 19:53:55 +02:00
flake.lock flake.lock: Update 2025-11-29 03:06:57 +00:00
flake.nix cosmic-reader: init at 0-unstable-2025-10-12 2025-11-16 05:42:06 +01:00
LICENSE.md init 2025-08-28 02:19:16 +02:00
README.md README: fix example syntax 2025-10-22 05:34:26 +02:00

NixOS COSMIC unstable builds

Usage

  1. Add this flake as an input to your system flake.
  2. Add the default module to your nixosConfiguration. This will add the overlay as well as the binary cache.

Example:

# flake.nix
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    cosmic-unstable.url = "github:ninelore/nixpkgs-cosmic-unstable";
  };
  outputs =
    inputs@{ ... }: {
    nixosConfigurations.example = nixpkgs.lib.nixosSystem {
      modules = [
        ./configuration.nix
        inputs.cosmic-unstable.nixosModules.default
      ];
    };
  };
}

License

This flake is licensed under the MIT License.

Note: MIT license does not apply to the packages built by this flake, merely to the files in this repository (the Nix expressions, build scripts, NixOS modules, etc.). It also might not apply to patches included here, which may be derivative works of the packages to which they apply. The aforementioned artifacts are all covered by the licenses of the respective packages.