feat(programs): add navi

This commit is contained in:
Moritz Böhme 2023-04-25 19:50:28 +02:00
parent 52650a3c84
commit af1f1fec2e
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
4 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,20 @@
{ config, lib, ... }:
with lib;
let
cfg = config.my.programs.navi;
in
{
options.my.programs.navi.enable = mkEnableOption "navi";
config = mkIf cfg.enable {
home-manager.users.moritz = {
programs.navi.enable = true;
xdg.dataFile."navi/cheats/personal" = {
enable = true;
recursive = true;
source = ./cheats;
};
};
};
}