nix-config/modules/apps/notes.nix
2024-08-02 23:49:06 +02:00

19 lines
417 B
Nix

{ lib, config, ... }: let
inherit (lib) mkIf;
inherit (config) conf;
in mkIf conf.apps.enable {
home-manager.users.${conf.username} = {
home.packages = [
];
programs.sioyek = {
enable = true;
bindings = {
"move_up" = config.keys.up;
"move_down" = config.keys.down;
"move_left" = config.keys.left;
"move_right" = config.keys.right;
};
};
};
}