13 lines
154 B
Nix
13 lines
154 B
Nix
{ ... }:
|
|
{
|
|
home-manager.users.alex = {
|
|
programs.vim = {
|
|
enable = true;
|
|
|
|
extraConfig = ''
|
|
set noswapfile
|
|
'';
|
|
};
|
|
};
|
|
}
|