nix-config/modules/home/programs/default.nix
2024-05-09 20:25:05 +02:00

34 lines
560 B
Nix

{ pkgs, osConfig, ... }: {
home.packages = with pkgs; [
krita
loupe
gnome.nautilus
];
programs.pandoc = {
enable = true;
};
programs.mpv = {
enable = true;
};
services.spotifyd = {
enable = true;
settings = {
global = {
device_name = osConfig.networking.hostName;
bitrate = 320;
volume_normalisation = true;
autoplay = false;
zeroconf_port = 57621;
};
};
};
programs.alacritty = {
enable = true;
settings = import ./alacritty-config.nix;
};
}