mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
16 lines
271 B
Nix
16 lines
271 B
Nix
{ 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
|
|
jellyfin-media-player
|
|
];
|
|
};
|
|
}
|