mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
18 lines
306 B
Nix
18 lines
306 B
Nix
{
|
|
home-manager.sharedModules = [
|
|
{
|
|
programs.zathura = {
|
|
enable = true;
|
|
|
|
options = {
|
|
guioptions = "v";
|
|
adjust-open = "width";
|
|
statusbar-basename = true;
|
|
render-loading = false;
|
|
scroll-step = 120;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
}
|