nix/common/home-manager/services.nix

35 lines
585 B
Nix
Raw Permalink Normal View History

{
services = {
gpg-agent = {
enable = true;
pinentryFlavor = "qt";
};
gnome-keyring = {
enable = true;
components = ["secrets" "ssh"];
};
mpd = {
enable = true;
musicDirectory = "/home/sijmen/Music";
extraConfig = ''
password "123@read,add,control,admin"
default_permissions ""
audio_output {
type "pulse"
name "pulse"
}
'';
};
mako = {
enable = true;
font = "Ubuntu 11";
defaultTimeout = 5000;
groupBy = "app-name,summary";
};
};
}