mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
15 lines
262 B
Nix
15 lines
262 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
setups.wrapper-manager = {
|
||
|
configs = {
|
||
|
archive-setup = {
|
||
|
systems = [ "x86_64-linux" ];
|
||
|
nixpkgs.branch = "nixos-unstable";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
flake.wrapperManagerModules.default = ../../modules/wrapper-manager;
|
||
|
}
|