I’m changing my config from unstable
to stable with some unstable packages
.
But my config uses a more recent version of I guess the nix-deamon
https://search.nixos.org/options?channel=unstable&query=nix.settings
Is available for unstable
but not for 21.11
I tried adding nix-daemon to the unstable overlay. But it didn’t work…
utils.lib.mkFlake {
inherit self inputs;
supportedSystems = ["x86_64-linux"];
channels.nixpkgs = {
input = nixpkgs;
patches = map (patch: ./patches + "/${patch}") (builtins.filter (x: x != ".keep") (builtins.attrNames (builtins.readDir ./patches)));
overlaysBuilder = channels: [
nur.overlay
(_: super: {
inherit (channels.nixpkgs-unstable)
nix-daemon
;
})
];
};
};
What could I do to make it available again, without reverting the newer/future syntax?