25 lines
404 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.settings.applications.common;
in {
options = {
settings.applications.common.enable = lib.mkOption {
type = lib.types.bool;
description = ''
Enable common applications
'';
};
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
vlc
2025-01-28 14:33:57 +01:00
unstable.bitwarden
pavucontrol
];
};
}