nixos-config/configs/flake-parts/wrapper-manager.nix

25 lines
494 B
Nix

{ lib, ... }:
{
setups.wrapper-manager = {
configs = {
archive-setup = {
systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable";
};
dotfiles-wrapped = {
systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable";
};
software-dev = {
systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable";
};
};
};
flake.wrapperManagerModules.default = ../../modules/wrapper-manager;
}