fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
11 lines
193 B
Nix
11 lines
193 B
Nix
{ pkgs
|
|
, config
|
|
, lib
|
|
, ...
|
|
}: {
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = config.myShells.zsh.enable;
|
|
enableFishIntegration = config.myShells.fish.enable;
|
|
};
|
|
}
|