21 lines
292 B
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;
|
|
};
|
|
}
|