Enable vim system-wide

This is required so it can be the default editor for all users that
don’t set another editor.
This commit is contained in:
Simon Bruder 2024-12-15 17:08:42 +01:00
parent 9027c02036
commit adc5fd4918
Signed by: simon
GPG key ID: 347FF8699CDA0776

View file

@ -84,7 +84,10 @@
];
programs.nano.enable = false;
programs.vim.defaultEditor = true;
programs.vim = {
enable = true;
defaultEditor = true;
};
# Clean temporary files on boot
boot.tmp.cleanOnBoot = true;