Files
config/modules/profiles/basedesktop/default.nix
2026-04-08 00:35:36 +03:00

20 lines
360 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
scrcpy
yt-dlp
ffmpeg
pandoc
imagemagick
ghostscript
poppler-utils
magic-wormhole
age-plugin-yubikey
(if stdenv.isDarwin then vlc-bin else vlc)
];
home-manager.users.${config.mj.username} = {
imports = [ ../../../shared/home/gui.nix ];
};
}