Files
dotfiles/overlays/default.nix
T
Richie cf31eac266
treefmt / nix fmt (pull_request) Successful in 2s
build_systems / prebuild-common-x86-64-v3 (pull_request) Successful in 35s
build_systems / build-portal-1 (pull_request) Successful in 18s
build_systems / build-brain (pull_request) Successful in 57s
build_systems / build-jeeves (pull_request) Successful in 1m3s
build_systems / build-bob (pull_request) Canceled after 6m31s
build_systems / build-rhapsody-in-green (pull_request) Canceled after 6m31s
test ebook search / test-ebook-search (pull_request) Failing after 16m6s
removing postgresql was no longer able to reproduse the error
2026-09-19 21:14:01 -04:00

20 lines
608 B
Nix

{ inputs, ... }:
{
# When applied, the stable nixpkgs set (declared in the flake inputs) will be accessible through 'pkgs.stable'
stable = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
};
# When applied, the master nixpkgs set (declared in the flake inputs) will be accessible through 'pkgs.master'
master = final: _prev: {
master = import inputs.nixpkgs-master {
system = final.stdenv.hostPlatform.system;
config.allowUnfree = true;
};
};
patches = import ./patches;
}