diff --git a/flake.nix b/flake.nix index aec8540..b6352e8 100755 --- a/flake.nix +++ b/flake.nix @@ -31,22 +31,22 @@ ./system/old-hp/configuration.nix ]; }; - 2012macmini = lib.nixosSystem { + macmini12 = lib.nixosSystem { inherit system; specialArgs = { inherit unstable; }; modules = [ # add your model from this list: https://github.com/NixOS/nixos-hardware/blob/master/flake.nix nixos-hardware.nixosModules.apple-macmini-4-1 - ./system/2012macmini/configuration.nix + ./system/macmini12/configuration.nix ]; }; - 2015macmini = lib.nixosSystem { + macmini15 = lib.nixosSystem { inherit system; specialArgs = { inherit unstable; }; modules = [ # add your model from this list: https://github.com/NixOS/nixos-hardware/blob/master/flake.nix nixos-hardware.nixosModules.apple-macmini-4-1 - ./system/2015macmini/configuration.nix + ./system/macmini15/configuration.nix ]; }; moms-hp = lib.nixosSystem { diff --git a/system/2012macmini/configuration.nix b/system/macmini12/configuration.nix similarity index 100% rename from system/2012macmini/configuration.nix rename to system/macmini12/configuration.nix diff --git a/system/2012macmini/disk.nix b/system/macmini12/disk.nix similarity index 100% rename from system/2012macmini/disk.nix rename to system/macmini12/disk.nix diff --git a/system/2012macmini/hardware-configuration.nix b/system/macmini12/hardware-configuration.nix similarity index 100% rename from system/2012macmini/hardware-configuration.nix rename to system/macmini12/hardware-configuration.nix diff --git a/system/2015macmini/configuration.nix b/system/macmini15/configuration.nix similarity index 100% rename from system/2015macmini/configuration.nix rename to system/macmini15/configuration.nix diff --git a/system/2015macmini/disk.nix b/system/macmini15/disk.nix similarity index 100% rename from system/2015macmini/disk.nix rename to system/macmini15/disk.nix diff --git a/system/2015macmini/hardware-configuration.nix b/system/macmini15/hardware-configuration.nix similarity index 100% rename from system/2015macmini/hardware-configuration.nix rename to system/macmini15/hardware-configuration.nix