pinwheel: Extract vim module
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
./modules/age
|
||||
./modules/ssh
|
||||
./modules/git
|
||||
./modules/vim
|
||||
./modules/syncthing
|
||||
./modules/firefox
|
||||
./modules/calibre
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
home.homeDirectory = "/home/alex";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
vim
|
||||
emacs
|
||||
gnumake
|
||||
tig
|
||||
|
||||
12
hosts/pinwheel/modules/vim/default.nix
Normal file
12
hosts/pinwheel/modules/vim/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ home-manager, pkgs, ...}:
|
||||
{
|
||||
home-manager.users.alex = {
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
|
||||
extraConfig = ''
|
||||
set noswapfile
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user