Fork of github:ninelore/nixpkgs-cosmic-unstable
Find a file
2025-09-15 18:02:30 +10:00
.github re-enable update3s for edit, files, term 2025-09-14 10:41:36 +02:00
lib finalize: ci and fixes 2025-08-28 20:19:22 +02:00
pkgs fix hashes 2025-09-15 18:02:30 +10: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-09-14 02:58:26 +00:00
flake.nix overlay fixupy stuffs 2025-09-07 08:36:29 -07:00
LICENSE.md init 2025-08-28 02:19:16 +02:00
README.md readme: update 2025-09-05 17:21:36 +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
        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.