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

25 lines
494 B
Nix
Raw Normal View History

2024-07-23 09:57:38 +00:00
{ 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";
};
2024-10-04 07:41:25 +00:00
software-dev = {
systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable";
};
2024-07-23 09:57:38 +00:00
};
};
flake.wrapperManagerModules.default = ../../modules/wrapper-manager;
}