Update python packages, add HE-AAC support to AV stuff
This commit is contained in:
parent
8c8669ee81
commit
af42bf2109
|
@ -8,8 +8,8 @@
|
||||||
hwdec = "vaapi";
|
hwdec = "vaapi";
|
||||||
vo = "gpu";
|
vo = "gpu";
|
||||||
|
|
||||||
no-audio-display = "";
|
audio-display = "no";
|
||||||
audio-normalize-downmix = "";
|
audio-normalize-downmix = "yes";
|
||||||
replaygain = "track";
|
replaygain = "track";
|
||||||
};
|
};
|
||||||
# Don't make this profile default since not all machines can handle it
|
# Don't make this profile default since not all machines can handle it
|
||||||
|
|
|
@ -13,8 +13,8 @@
|
||||||
fusee-launcher
|
fusee-launcher
|
||||||
ncat
|
ncat
|
||||||
pwndbg
|
pwndbg
|
||||||
python37Packages.binwalk-full
|
python3Packages.binwalk-full
|
||||||
python37Packages.shodan
|
python3Packages.shodan
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.artemis.extraGroups = [ "adbusers" "wireshark" ];
|
users.users.artemis.extraGroups = [ "adbusers" "wireshark" ];
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
llvm = pkgs.llvmPackages_12;
|
llvm = pkgs.llvmPackages_12;
|
||||||
|
ffmpeg-nonfree = pkgs.ffmpeg-full.override { nonfreeLicensing = true; fdkaacExtlib = true; };
|
||||||
|
mpv = pkgs.wrapMpv (pkgs.mpv-unwrapped.override { ffmpeg = ffmpeg-nonfree; }) { };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
environment.systemPackages = (with pkgs; [
|
environment.systemPackages = (with pkgs; [
|
||||||
# Audiovisual
|
# Audiovisual
|
||||||
darktable
|
darktable
|
||||||
exiftool
|
exiftool
|
||||||
ffmpeg-full
|
ffmpeg-nonfree
|
||||||
flac
|
flac
|
||||||
gimp
|
gimp
|
||||||
inkscape
|
inkscape
|
||||||
|
|
|
@ -41,6 +41,7 @@ in
|
||||||
mako
|
mako
|
||||||
polkit_gnome
|
polkit_gnome
|
||||||
slurp
|
slurp
|
||||||
|
waypipe
|
||||||
wf-recorder
|
wf-recorder
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
wofi
|
wofi
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
virtmanager
|
virtmanager
|
||||||
spice_gtk
|
spice_gtk
|
||||||
# swtpm-tpm2
|
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users = {
|
users.users = {
|
||||||
|
|
Loading…
Reference in a new issue