aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-09-14 17:18:09 -0700
committerFranck Cuny <franck@fcuny.net>2023-09-14 17:36:58 -0700
commit17a8f86782b773c77880e34b6a02e53def4015e8 (patch)
treeee611470d040b90331865b7e519b7e737ea70c29 /flake.nix
parentbuild(deps): bump cachix/install-nix-action from 22 to 23 (#2) (diff)
downloadinfra-17a8f86782b773c77880e34b6a02e53def4015e8.tar.gz
more configuration for darwin
Diffstat (limited to '')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 6a2cfa5..b305ac5 100644
--- a/flake.nix
+++ b/flake.nix
@@ -63,7 +63,7 @@
let
myLib = import ./nix inputs;
lib = inputs.nixpkgs.lib // builtins;
- supportedSystems = [ "x86_64-linux" ];
+ supportedSystems = [ "x86_64-linux" "aarch64-darwin" ];
forAllSystems = lib.genAttrs supportedSystems;
# Nixpkgs instantiated for supported system types.
@@ -165,6 +165,7 @@
"mba-fcuny" = darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
+ home-manager.darwinModules.home-manager
./hosts/mba
];
};