mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Desktop] Refactor config in smaller files
This commit is contained in:
parent
16073bf6fb
commit
773c7844bc
4 changed files with 84 additions and 21 deletions
15
desktop/multimedia.nix
Normal file
15
desktop/multimedia.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.aviallon.desktop;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
ffmpeg-full
|
||||
krita
|
||||
obs-studio
|
||||
scribus
|
||||
yt-dlp
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue