disallow pagination for jujutsu
This commit is contained in:
parent
d4701f8b49
commit
ccb712a42b
1 changed files with 15 additions and 7 deletions
|
@ -1,10 +1,9 @@
|
||||||
{
|
{ inputs
|
||||||
inputs,
|
, lib
|
||||||
lib,
|
, pkgs
|
||||||
pkgs,
|
, config
|
||||||
config,
|
, outputs
|
||||||
outputs,
|
, ...
|
||||||
...
|
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -45,6 +44,15 @@
|
||||||
userName = "liv";
|
userName = "liv";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.jujutsu = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
user.name = "liv";
|
||||||
|
user.email = "shadows@with.al";
|
||||||
|
ui.paginate = "never";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = lib.mkDefault "lu";
|
username = lib.mkDefault "lu";
|
||||||
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
||||||
|
|
Loading…
Add table
Reference in a new issue