sisko: Add music listening software; mpd, ncmpcpp, picard, easyeffects
This commit is contained in:
parent
ae8f914ab3
commit
b4d85a796a
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
@ -10,6 +10,7 @@
|
|||||||
# GUI Applications
|
# GUI Applications
|
||||||
chromium
|
chromium
|
||||||
discord
|
discord
|
||||||
|
easyeffects
|
||||||
element-desktop
|
element-desktop
|
||||||
emacs-gtk
|
emacs-gtk
|
||||||
papers
|
papers
|
||||||
@ -19,6 +20,7 @@
|
|||||||
mpv
|
mpv
|
||||||
mumble
|
mumble
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
picard
|
||||||
prismlauncher
|
prismlauncher
|
||||||
swayimg
|
swayimg
|
||||||
spotify
|
spotify
|
||||||
@ -74,6 +76,7 @@
|
|||||||
settings.window.opacity = 0.92;
|
settings.window.opacity = 0.92;
|
||||||
};
|
};
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
|
ncmpcpp.enable = true;
|
||||||
neovim.plugins = with pkgs.vimPlugins; [ copilot-vim ];
|
neovim.plugins = with pkgs.vimPlugins; [ copilot-vim ];
|
||||||
rbw = {
|
rbw = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -94,6 +97,23 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
mpd = let
|
||||||
|
home = config.home.homeDirectory;
|
||||||
|
in {
|
||||||
|
enable = true;
|
||||||
|
musicDirectory = "${home}/mnt/music";
|
||||||
|
dataDir = "${home}/Music/mpd/data";
|
||||||
|
playlistDirectory = "${home}/Music/mpd/playlists";
|
||||||
|
extraConfig = ''
|
||||||
|
audio_output {
|
||||||
|
type "pipewire"
|
||||||
|
name "PipewireOut1"
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
name = "Bibata-Modern-Ice";
|
name = "Bibata-Modern-Ice";
|
||||||
package = pkgs.bibata-cursors;
|
package = pkgs.bibata-cursors;
|
||||||
|
Loading…
Reference in New Issue
Block a user