feat: add nvim dap

This commit is contained in:
DACHXY 2025-01-29 14:27:46 +08:00
parent e501718888
commit c0f766ea26
15 changed files with 370 additions and 18 deletions

View file

@ -4,6 +4,16 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
fileSystems."/mnt/storage" = {
device = "router.dn:/mnt/storage";
fsType = "nfs";
options = [
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=600"
];
};
# Enable F keys in some wireless keyboard (Ex. neo65)
boot.extraModprobeConfig = ''
options hid_apple fnmode=2

View file

@ -46,7 +46,10 @@ in
;
};
users."${username}" = {
imports = [ ../../../home ];
imports = [
../../../home
../../../home/user/music-production.nix
];
};
};
}