diff --git a/flake.nix b/flake.nix index 0ee7dfb..aed801c 100644 --- a/flake.nix +++ b/flake.nix @@ -63,7 +63,6 @@ ]; }; - "garrus" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ @@ -82,6 +81,25 @@ } ]; }; + + "jaal" = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + modules = [ + # Add Disko for disk management + disko.nixosModules.disko + ./disko-config.nix + ./gnome.nix + ./garrus.nix + ./configuration.nix + ./hardware-configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.aaronh = import ./home.nix; + } + ]; + }; "thelio-b1" = nixpkgs.lib.nixosSystem { system = "x86_64-linux";