init
This commit is contained in:
commit
2278bffff9
77 changed files with 1174 additions and 0 deletions
8
Modules/Home/GUI-Apps/Multimedia/Video/default.nix
Normal file
8
Modules/Home/GUI-Apps/Multimedia/Video/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./kdenlive.nix
|
||||
./zoom.nix
|
||||
];
|
||||
}
|
||||
20
Modules/Home/GUI-Apps/Multimedia/Video/kdenlive.nix
Normal file
20
Modules/Home/GUI-Apps/Multimedia/Video/kdenlive.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.nyx-module.home.kdenlive;
|
||||
in
|
||||
{
|
||||
options.nyx-module.home.kdenlive = {
|
||||
enable = lib.mkEnableOption "Enable kdenlive (home) module";
|
||||
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.kdenlive;
|
||||
description = "Package to install for kdenlive.";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
};
|
||||
}
|
||||
20
Modules/Home/GUI-Apps/Multimedia/Video/zoom.nix
Normal file
20
Modules/Home/GUI-Apps/Multimedia/Video/zoom.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.nyx-module.home.zoom;
|
||||
in
|
||||
{
|
||||
options.nyx-module.home.zoom = {
|
||||
enable = lib.mkEnableOption "Enable zoom (home) module";
|
||||
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.zoom;
|
||||
description = "Package to install for zoom.";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue