Skip to content

Commit

Permalink
Add easyeffects
Browse files Browse the repository at this point in the history
  • Loading branch information
rake5k committed Oct 2, 2023
1 parent b6db926 commit 1b0cd3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions home/roles/multimedia/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ in
home = {
packages = with pkgs; [
blueberry
easyeffects
plex-media-player
spotifywm
];
};

programs.mpv.enable = true;
services.easyeffects.enable = true;
};
}
12 changes: 8 additions & 4 deletions nixos/roles/sound/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ in
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.pavucontrol ];
hardware.bluetooth.enable = true;
security.rtkit.enable = lib.mkDefault config.services.pipewire.enable;

# Necessary for easyeffects
programs.dconf.enable = true;

security.rtkit.enable = config.services.pipewire.enable;
services.pipewire = {
enable = lib.mkDefault true;
alsa.enable = lib.mkDefault true;
pulse.enable = lib.mkDefault true;
enable = true;
alsa.enable = true;
pulse.enable = true;
};
};
}

0 comments on commit 1b0cd3f

Please sign in to comment.