config/utils.nix

18 lines
255 B
Nix
Raw Normal View History

2024-11-17 20:28:14 +01:00
{
nixpkgs,
inputs,
outputs,
...
}:
{
mkSystem =
2024-11-17 21:14:36 +01:00
configs:
2024-11-17 20:28:14 +01:00
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs outputs;
};
2024-11-17 21:14:36 +01:00
modules = [ ./systems/base.nix ] ++ configs;
2024-11-17 20:28:14 +01:00
};
}