From 4019e1c598e4d142e021d38ac6964db092e84caa Mon Sep 17 00:00:00 2001 From: Spotlight Date: Tue, 18 Feb 2025 03:11:03 -0600 Subject: [PATCH 1/2] cyclone: Add Prism launcher --- hosts/linux/cyclone/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/linux/cyclone/configuration.nix b/hosts/linux/cyclone/configuration.nix index 7bcb982..1be363f 100644 --- a/hosts/linux/cyclone/configuration.nix +++ b/hosts/linux/cyclone/configuration.nix @@ -95,6 +95,9 @@ environment.systemPackages = with pkgs; [ cider discord + (prismlauncher.override { + jdks = [ pkgs.jdk23 ]; + }) vscode ]; From c989a00fd62bdc6b528597cfdea156b56242eade Mon Sep 17 00:00:00 2001 From: Spotlight Date: Tue, 18 Feb 2025 03:11:29 -0600 Subject: [PATCH 2/2] sequoia: Change nix-darwin stateVersion to 6 --- hosts/darwin/sequoia/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/darwin/sequoia/configuration.nix b/hosts/darwin/sequoia/configuration.nix index 3c9c925..0eb8cc7 100644 --- a/hosts/darwin/sequoia/configuration.nix +++ b/hosts/darwin/sequoia/configuration.nix @@ -26,7 +26,7 @@ # Used for backwards compatibility, please read the changelog before changing. # $ darwin-rebuild changelog - system.stateVersion = 4; + system.stateVersion = 6; nixpkgs.hostPlatform = lib.mkDefault "x86_64-darwin";