9 lines
158 B
Nix
9 lines
158 B
Nix
{ pkgs, ... }: {
|
|
services.flatpak.packages = [
|
|
"org.prismlauncher.PrismLauncher/x86_64/stable"
|
|
];
|
|
home.packages = [
|
|
pkgs.prismlauncher
|
|
];
|
|
}
|