aboutsummaryrefslogtreecommitdiff
path: root/flake/mba.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake/mba.nix')
-rw-r--r--flake/mba.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/flake/mba.nix b/flake/mba.nix
new file mode 100644
index 0000000..60ac876
--- /dev/null
+++ b/flake/mba.nix
@@ -0,0 +1,20 @@
+{ nixpkgs, home-manager, darwin, inputs, ... }:
+
+let
+ default-system = "aarch64-darwin";
+
+ nixpkgsConfig = {
+ config = {
+ allowUnfree = true;
+ };
+ };
+in
+{
+ system = darwin.lib.darwinSystem {
+ system = default-system;
+ modules = [
+ ../hosts/mba
+ home-manager.darwinModules.home-manager
+ ];
+ };
+}