mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
15 lines
226 B
Nix
15 lines
226 B
Nix
{ pkgs
|
|
, lib
|
|
, rootPath
|
|
, config
|
|
, ...
|
|
}:
|
|
let
|
|
cfg = config.kp2pml30;
|
|
in lib.mkIf cfg.opera {
|
|
home-manager.users.${cfg.username}.home = {
|
|
packages = with pkgs; [
|
|
(opera.override { proprietaryCodecs = true; })
|
|
];
|
|
};
|
|
}
|