From 753d9c0e96e5c27bfb8c6fa012876d261b8dc0ae Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Wed, 20 Nov 2024 20:36:32 +0100 Subject: [PATCH] Added macbook profile --- flake.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/flake.nix b/flake.nix index 3acc97e..443f579 100644 --- a/flake.nix +++ b/flake.nix @@ -44,6 +44,16 @@ #nix-flatpak.nixosModules.default ]; }; + mac = nixpkgs.lib.nixosSystem { + specialArgs = { hostname = "nixos-macbook-kylekrein"; system = "aarch64-linux"; inherit inputs; }; + + modules = [ + ./nixos/configuration.nix + ./nixos/mac-hardware-conf.nix + inputs.home-manager.nixosModules.default + stylix.nixosModules.stylix + ]; + }; }; }; }