feat: add nvim dap
This commit is contained in:
parent
e501718888
commit
c0f766ea26
15 changed files with 370 additions and 18 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -46,7 +46,10 @@ in
|
|||
;
|
||||
};
|
||||
users."${username}" = {
|
||||
imports = [ ../../../home ];
|
||||
imports = [
|
||||
../../../home
|
||||
../../../home/user/music-production.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue