mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
25 lines
494 B
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;
|
|
}
|