nix flake update

This commit is contained in:
Oliver Davies 2025-02-27 00:17:38 +00:00
parent 6d55ea4dee
commit ce4f49dc98
5 changed files with 32 additions and 46 deletions
nix/modules/home-manager/features/desktop/media

View file

@ -11,6 +11,6 @@ with lib;
options.features.desktop.media.kdenlive.enable = mkEnableOption "Enable kdenlive";
config = mkIf config.features.desktop.media.kdenlive.enable {
home.packages = with pkgs; [ kdenlive ];
home.packages = with pkgs; [ kdePackages.kdenlive ];
};
}