Renamings and individualizations of aliases and such
This commit is contained in:
parent
c50925b74b
commit
5b35604d09
7 changed files with 28 additions and 27 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
K:/home/${config.home.username}/Network/Midas/Files
|
||||
M:/home/${config.home.username}/Network/Midas/Music
|
||||
V:/home/${config.home.username}/Network/Midas/Videos
|
||||
V:/home/${config.home.username}/Network/Midas/Photos
|
||||
P:/home/${config.home.username}/Network/Midas/Photos
|
||||
'';
|
||||
};
|
||||
packages = with pkgs; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue