diff --git a/flake.nix b/flake.nix index f4e6a74..0430e43 100644 --- a/flake.nix +++ b/flake.nix @@ -26,13 +26,6 @@ outputs = inputs@{ self, nix-darwin, nixpkgs, home-manager, nixvim, claude-code, firefox-addons, nix-homebrew, disko, plasma-manager }: { - darwinConfigurations."imac" = nix-darwin.lib.darwinSystem { - modules = [ - ./hosts/darwin/imac/system.nix - ]; - specialArgs = { inherit nix-homebrew; }; - }; - darwinConfigurations."mba" = nix-darwin.lib.darwinSystem { modules = [ ./hosts/darwin/mba/system.nix @@ -66,12 +59,6 @@ }; homeConfigurations = { - "yanlin@imac" = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages.aarch64-darwin; - modules = [ ./hosts/darwin/imac/home.nix ]; - extraSpecialArgs = { inherit claude-code nixvim firefox-addons; }; - }; - "yanlin@mba" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.aarch64-darwin; modules = [ ./hosts/darwin/mba/home.nix ]; diff --git a/hosts/darwin/imac/home.nix b/hosts/darwin/imac/home.nix deleted file mode 100644 index 432c24b..0000000 --- a/hosts/darwin/imac/home.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ config, pkgs, ... }: - -{ - imports = [ - ../home-default.nix - ]; - - # iMac-specific home configuration - # Example: Different screen setup, desktop-specific tools, etc. - - # yt-dlp configuration - programs.yt-dlp-custom = { - enable = true; - downloadDir = "~/Downloads/Videos"; - }; -} diff --git a/hosts/darwin/imac/system.nix b/hosts/darwin/imac/system.nix deleted file mode 100644 index 27b2bcb..0000000 --- a/hosts/darwin/imac/system.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, pkgs, ... }: - -{ - # iMac-specific configuration - networking.computerName = "imac"; - networking.hostName = "imac"; - - # Import common Darwin configuration - imports = [ - ../system-default.nix - ]; -}