22 lines
402 B
Nix
22 lines
402 B
Nix
{inputs, ...}: {
|
|
systems = [
|
|
"x86_64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
|
|
### Nixpkgs Config ###
|
|
perSystem = {system, ...}: {
|
|
_module.args.pkgs = import inputs.nixpkgs {
|
|
inherit system;
|
|
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
# TODO: Move these to custom modules
|
|
overlays = [
|
|
(import ./overlays/wezterm.nix {inherit inputs;})
|
|
];
|
|
};
|
|
};
|
|
}
|