nixos-config/configs/flake-parts/wrapper-manager.nix
Gabriel Arazas af0f25b7b0
wrapperPackages/dotfiles-wrapped: init
Not all of it is working as intended but we'll fix at a later time.
2024-07-30 13:26:58 +08:00

20 lines
380 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";
};
};
};
flake.wrapperManagerModules.default = ../../modules/wrapper-manager;
}