media isolated and mopidy
This commit is contained in:
parent
6ae1e0918e
commit
0c3931f1b1
3 changed files with 25 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
{ lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./media.nix
|
||||
./programs.nix
|
||||
./themes.nix
|
||||
];
|
||||
|
|
24
modules/user/media.nix
Normal file
24
modules/user/media.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ config, lib, pkgs, ... }: lib.mkIf config.full {
|
||||
|
||||
home-manager.users.${config.username} = {
|
||||
home.packages = with pkgs; [
|
||||
loupe
|
||||
spotify
|
||||
];
|
||||
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.mopidy = {
|
||||
enable = true;
|
||||
extensionPackages = with pkgs; [
|
||||
mopidy-mpd
|
||||
mopidy-mpris
|
||||
mopidy-muse
|
||||
mopidy-spotify
|
||||
mopidy-local
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -14,11 +14,9 @@
|
|||
signal-desktop
|
||||
vesktop
|
||||
fractal
|
||||
loupe
|
||||
snapshot
|
||||
nautilus
|
||||
libreoffice-qt6-fresh
|
||||
spotify
|
||||
# freecad -- broken dependency
|
||||
];
|
||||
|
||||
|
@ -35,10 +33,6 @@
|
|||
enable = true;
|
||||
};
|
||||
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
profiles = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue