marleyos/flake/config.nix
2025-05-31 17:25:13 -07:00

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;})
];
};
};
}