mirror of
https://github.com/flynx/nixos.git
synced 2025-12-17 00:51:47 +00:00
mpd...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
2e4f1d3dea
commit
ee44844da8
@ -194,21 +194,26 @@
|
|||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
||||||
# Enable sound with pipewire.
|
# Pipewire...
|
||||||
#sound.enable = true;
|
|
||||||
#hardware.pulseaudio.enable = false;
|
|
||||||
services.pulseaudio.enable = false;
|
services.pulseaudio.enable = false;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
alsa.support32Bit = true;
|
alsa.support32Bit = true;
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
# If you want to use JACK applications, uncomment this
|
jack.enable = true;
|
||||||
#jack.enable = true;
|
};
|
||||||
|
services.mpd = {
|
||||||
|
enable = true;
|
||||||
|
# XXX
|
||||||
|
musicDirectory = "/home/f_lynx/Music";
|
||||||
|
extraConfig = ''
|
||||||
|
'';
|
||||||
|
|
||||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
# Allow non-localhost connections
|
||||||
# no need to redefine it in your config for now)
|
#network.listenAddress = "any";
|
||||||
#media-session.enable = true;
|
# Systemd feature: only start MPD service upon connection to its socket
|
||||||
|
network.startWhenNeeded = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.colord.enable = true;
|
services.colord.enable = true;
|
||||||
@ -304,7 +309,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.f_lynx = {
|
users.users.f_lynx = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
@ -417,7 +421,7 @@
|
|||||||
|
|
||||||
# media...
|
# media...
|
||||||
vlc mpv
|
vlc mpv
|
||||||
cmus rmpc mpd mpc
|
cmus rmpc mpc
|
||||||
yt-dlp media-downloader
|
yt-dlp media-downloader
|
||||||
ffmpeg #ffmpegthumbnailer
|
ffmpeg #ffmpegthumbnailer
|
||||||
httrack
|
httrack
|
||||||
@ -517,7 +521,8 @@
|
|||||||
# jdk - required by texlive-pax (BUG: no dependency??)
|
# jdk - required by texlive-pax (BUG: no dependency??)
|
||||||
temurin-jre-bin
|
temurin-jre-bin
|
||||||
|
|
||||||
#blender
|
blender
|
||||||
|
rawtherapee
|
||||||
#krita
|
#krita
|
||||||
gimp3-with-plugins
|
gimp3-with-plugins
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user