81 lines
1.1 KiB
Nix
81 lines
1.1 KiB
Nix
# cli programs should be available on servers and desktop
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.zsh.enable = true;
|
|
programs.fzf = {
|
|
fuzzyCompletion = true;
|
|
keybindings = true;
|
|
};
|
|
|
|
services = {
|
|
mpd.enable = true;
|
|
mpd.musicDirectory = "/home/mrflos/Musique";
|
|
mpd.user = "mrflos";
|
|
mpd.group = "users";
|
|
mpd.startWhenNeeded = true;
|
|
mpd.extraConfig = ''
|
|
audio_output {
|
|
type "pulse"
|
|
name "mpd"
|
|
}
|
|
'';
|
|
};
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
# $ nix search wget
|
|
environment.systemPackages = with pkgs; [
|
|
ansible
|
|
bat
|
|
btop
|
|
cargo
|
|
catnip
|
|
cmatrix
|
|
coreutils
|
|
curl
|
|
dnsutils
|
|
emacs-nox
|
|
fd
|
|
findutils
|
|
fzf
|
|
gnugrep
|
|
gnumake
|
|
gnupg
|
|
imagemagick
|
|
jq
|
|
git
|
|
glances
|
|
htop
|
|
lazygit
|
|
lsd
|
|
mc
|
|
micro
|
|
mosh
|
|
mpc-cli
|
|
mpd
|
|
neofetch
|
|
ollama
|
|
pandoc
|
|
pass
|
|
pciutils
|
|
pinentry
|
|
ripgrep
|
|
rustc
|
|
slides
|
|
starship
|
|
syncthing
|
|
tmux
|
|
tokei
|
|
tree
|
|
unzip
|
|
usbutils
|
|
wget
|
|
whois
|
|
wl-clipboard
|
|
wirelesstools
|
|
yt-dlp
|
|
zellij
|
|
zsh-autosuggestions
|
|
];
|
|
}
|