From 4d64c69455f2761ab1d5454ef9738f7666519068 Mon Sep 17 00:00:00 2001 From: lightly-toasted Date: Sat, 2 Aug 2025 23:27:10 +0900 Subject: [PATCH] feat: add prism launcher --- home/toast/home.nix | 1 + home/toast/programs/prismlauncher.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 home/toast/programs/prismlauncher.nix diff --git a/home/toast/home.nix b/home/toast/home.nix index 21bf53f..f4c1a9f 100644 --- a/home/toast/home.nix +++ b/home/toast/home.nix @@ -15,6 +15,7 @@ ./programs/firefox.nix ./programs/yazi.nix ./programs/nixcord.nix + ./programs/prismlauncher.nix ]; home = { diff --git a/home/toast/programs/prismlauncher.nix b/home/toast/programs/prismlauncher.nix new file mode 100644 index 0000000..2256d75 --- /dev/null +++ b/home/toast/programs/prismlauncher.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; [ prismlauncher ]; +}