move programs to common

This commit is contained in:
Noa Aarts 2024-03-01 12:50:03 +01:00
parent 9b52db0aee
commit e2c2018b90
8 changed files with 1161 additions and 525 deletions

12
common/nvim/nvim.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, inputs, ... }:
{
programs.neovim = {
enable = true;
extraLuaConfig = ''
${builtins.readFile ./init.lua}
'';
};
}