fix(home): Force allow unfree pkgs for PhpStorm

This commit is contained in:
punkfairie 2025-02-17 20:23:17 -08:00
parent 1e4014a2c1
commit 1a507c75a0
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -9,6 +9,9 @@ in {
options.marleyos.programs.phpstorm.enable = lib.mkEnableOption "phpstorm";
config = lib.mkIf cfg.enable {
# JetBrains products are unfree.
nixpkgs.config.allowUnfree = lib.mkForce true;
home.packages = with pkgs; [
jetbrains.phpstorm
];