Simplify some vars and such

This commit is contained in:
Vice 2025-03-05 02:17:33 -05:00
parent 96c74234c0
commit eb34493b18
9 changed files with 7 additions and 22 deletions

View file

@ -10,7 +10,6 @@
./nh
./nix-index
./ranger
./spotdl
./tmux
./yt-dlp
./zsh

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }:
{ config, pkgs, ... }:
{
programs.ranger = {
enable = true;

View file

@ -1,7 +0,0 @@
{ config, lib, pkgs, ... }:
{
home = lib.mkIf config.home.desktop.enable {
packages = with pkgs; [ spotdl ];
shellAliases.spotdl = "spotdl --m3u --format opus";
};
}