mv kdenlive to module
All checks were successful
nix flake show / show-flake (push) Successful in 28s
All checks were successful
nix flake show / show-flake (push) Successful in 28s
This commit is contained in:
parent
c440d392fa
commit
8da7382a1a
@ -40,7 +40,6 @@
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
libsForQt5.kdenlive
|
|
||||||
komikku
|
komikku
|
||||||
blender
|
blender
|
||||||
inkscape
|
inkscape
|
||||||
|
|||||||
@ -29,7 +29,6 @@
|
|||||||
networking.hostName = "laptop1";
|
networking.hostName = "laptop1";
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
libsForQt5.kdenlive
|
|
||||||
floorp
|
floorp
|
||||||
komikku
|
komikku
|
||||||
librewolf
|
librewolf
|
||||||
|
|||||||
@ -28,6 +28,7 @@ in
|
|||||||
gui-utilities.enable = true;
|
gui-utilities.enable = true;
|
||||||
mouse.enable = true;
|
mouse.enable = true;
|
||||||
obsidian.enable = true;
|
obsidian.enable = true;
|
||||||
|
kdenlive.enable = true;
|
||||||
thunderbird.enable = true;
|
thunderbird.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@ -28,6 +28,7 @@ in
|
|||||||
gui-utilities.enable = true;
|
gui-utilities.enable = true;
|
||||||
mouse.enable = true;
|
mouse.enable = true;
|
||||||
obsidian.enable = true;
|
obsidian.enable = true;
|
||||||
|
kdenlive.enable = true;
|
||||||
thunderbird.enable = true;
|
thunderbird.enable = true;
|
||||||
};
|
};
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "ignore";
|
||||||
|
|||||||
@ -3,5 +3,6 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./office.nix
|
./office.nix
|
||||||
./obsidian.nix
|
./obsidian.nix
|
||||||
|
./kdenlive.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
17
modules/nix/office/kdenlive.nix
Normal file
17
modules/nix/office/kdenlive.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user