nixfiles/common/nix.nix
Katherina Walshe-Grey 0c66b86941 qenya: Drop jellyfin-media-player
It's still on Qt 5 which nixpkgs are aggressively trying to drop support
for, and though I'm annoyed by that it *is* at least replaceable now by
Firefox 145+ which has grown native support for Matroska files
2025-11-15 16:22:32 +00:00

24 lines
545 B
Nix

{ config, lib, pkgs, ... }:
{
nix.settings.experimental-features = "nix-command flakes";
nixpkgs.flake = {
source = lib.cleanSource pkgs.path;
setNixPath = true;
setFlakeRegistry = true;
};
nixpkgs.config.allowUnfree = true;
nix.settings.trusted-users = [ "@wheel" ];
nix.package = pkgs.lixPackageSets.stable.lix;
nixpkgs.overlays = [
(final: prev: {
inherit (final.lixPackageSets.stable)
nixpkgs-review
nix-direnv
nix-eval-jobs
nix-fast-build
colmena;
})
];
}