mv kdenlive to module
nix flake show / show-flake (push) Successful in 28s

This commit is contained in:
smayzy
2025-07-17 15:58:10 +02:00
parent c440d392fa
commit 8da7382a1a
6 changed files with 20 additions and 2 deletions
+1
View File
@@ -28,6 +28,7 @@ in
gui-utilities.enable = true;
mouse.enable = true;
obsidian.enable = true;
kdenlive.enable = true;
thunderbird.enable = true;
};
};
+1
View File
@@ -28,6 +28,7 @@ in
gui-utilities.enable = true;
mouse.enable = true;
obsidian.enable = true;
kdenlive.enable = true;
thunderbird.enable = true;
};
services.logind.lidSwitch = "ignore";
+1
View File
@@ -3,5 +3,6 @@
imports = [
./office.nix
./obsidian.nix
./kdenlive.nix
];
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.kdenlive.enable = mkOption {
type = types.bool;
default = false;
description = "kdenlive";
};
config = mkIf config.smayzy.kdenlive.enable {
environment.systemPackages = with pkgs; [
libsForQt5.kdenlive
];
};
}