Renamings and individualizations of aliases and such

This commit is contained in:
Bun 2025-04-11 00:36:56 -04:00
parent c50925b74b
commit 5b35604d09
7 changed files with 28 additions and 27 deletions

View file

@ -1,13 +1,14 @@
{ config, lib, pkgs, ... }:
{ config, lib, pkgs, pkgsUnstable, ... }:
{
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
ffmpeg
ffmpegthumbnailer
playerctl
puddletag
pulsemixer
spotdl
];
config = lib.mkIf config.home.desktop.enable {
home.packages = (with pkgs; [
ffmpeg
ffmpegthumbnailer
playerctl
puddletag
pulsemixer
]) ++ (with pkgsUnstable; [ spotdl ]);
home.shellAliases.spotopus = "spotdl --m3u --format opus";
home.shellAliases.spotopus = "spotdl --m3u --format opus";
};
}