Stop using unstable packages where they aren't necessary
This commit is contained in:
parent
a78189de25
commit
f49316e600
2 changed files with 13 additions and 15 deletions
|
@ -1,13 +1,14 @@
|
||||||
{ config, lib, pkgs, pkgsUnstable, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
config = lib.mkIf config.home.desktop.enable {
|
config = lib.mkIf config.home.desktop.enable {
|
||||||
home.packages = (with pkgs; [
|
home.packages = with pkgs; [
|
||||||
ffmpeg
|
ffmpeg
|
||||||
ffmpegthumbnailer
|
ffmpegthumbnailer
|
||||||
playerctl
|
playerctl
|
||||||
puddletag
|
puddletag
|
||||||
pulsemixer
|
pulsemixer
|
||||||
]) ++ (with pkgsUnstable; [ spotdl ]);
|
spotdl
|
||||||
|
];
|
||||||
|
|
||||||
home.shellAliases.spotopus = "spotdl --m3u --format opus";
|
home.shellAliases.spotopus = "spotdl --m3u --format opus";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,14 +1,11 @@
|
||||||
{ config, lib, pkgs, pkgsUnstable, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
config = lib.mkIf config.home.gaming.enable {
|
home.packages = with pkgs; lib.mkIf config.home.gaming.enable [
|
||||||
home.packages = (with pkgs; [
|
azahar
|
||||||
cemu
|
cemu
|
||||||
dolphin-emu-beta
|
dolphin-emu-beta
|
||||||
duckstation
|
duckstation
|
||||||
pcsx2
|
pcsx2
|
||||||
]) ++ (with pkgsUnstable; [
|
ryubing
|
||||||
azahar
|
];
|
||||||
ryubing
|
|
||||||
]);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue