nix-config/configs/home-manager/shpool.nix

21 lines
292 B
Nix

{
config,
pkgs,
lib,
...
}: {
services.shpool = {
enable = true;
settings = {
default_dir = ".";
prompt_prefix = "";
keybinding = [
{
action = "detach";
binding = "Ctrl-a d";
}
];
};
systemd = true;
};
}