add corectly chromium

This commit is contained in:
smayzy 2025-07-30 11:48:56 +02:00
parent 27bc4cf9a4
commit 1635d78674

View File

@ -1,4 +1,4 @@
{ lib, config, ... }: { lib, config, pkgs, ... }:
let let
inherit (lib) mkIf mkOption types; inherit (lib) mkIf mkOption types;
in in
@ -11,5 +11,8 @@ in
config = mkIf config.smayzy.chromium.enable { config = mkIf config.smayzy.chromium.enable {
programs.chromium.enable = true; programs.chromium.enable = true;
environment.systemPackages = with pkgs; [
chromium
];
}; };
} }