Swapped some apps and added config
This commit is contained in:
@ -54,6 +54,7 @@
|
|||||||
# Office
|
# Office
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
(pkgs-stable.libreoffice-fresh)
|
(pkgs-stable.libreoffice-fresh)
|
||||||
|
geary
|
||||||
mate.atril
|
mate.atril
|
||||||
openboard
|
openboard
|
||||||
xournalpp
|
xournalpp
|
||||||
@ -126,9 +127,10 @@
|
|||||||
pinta
|
pinta
|
||||||
inkscape
|
inkscape
|
||||||
godot_4
|
godot_4
|
||||||
(pkgs-stable.lollypop.override { youtubeSupport = false; })
|
|
||||||
vlc
|
vlc
|
||||||
mpv
|
mpv
|
||||||
|
ncmpcpp
|
||||||
|
mpc
|
||||||
yt-dlp_git
|
yt-dlp_git
|
||||||
blender-hip
|
blender-hip
|
||||||
freecad
|
freecad
|
||||||
@ -205,6 +207,26 @@
|
|||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.mpd = rec {
|
||||||
|
enable = true;
|
||||||
|
musicDirectory = config.xdg.userDirs.music+"/Songs";
|
||||||
|
playlistDirectory = config.xdg.userDirs.music+"/Playlists";
|
||||||
|
dbFile = musicDirectory+"/mpd.db";
|
||||||
|
extraConfig = ''
|
||||||
|
audio_output {
|
||||||
|
type "pipewire"
|
||||||
|
name "PipeWire Sound Server"
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.ncmpcpp.bindings = [
|
||||||
|
{ key = "j"; command = "scroll_down"; }
|
||||||
|
{ key = "k"; command = "scroll_up"; }
|
||||||
|
{ key = "J"; command = [ "select_item" "scroll_down" ]; }
|
||||||
|
{ key = "K"; command = [ "select_item" "scroll_up" ]; }
|
||||||
|
];
|
||||||
|
|
||||||
xdg.enable = true;
|
xdg.enable = true;
|
||||||
xdg.userDirs = {
|
xdg.userDirs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Reference in New Issue
Block a user