pinwheel: Extract vim module
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
./modules/age
|
./modules/age
|
||||||
./modules/ssh
|
./modules/ssh
|
||||||
./modules/git
|
./modules/git
|
||||||
|
./modules/vim
|
||||||
./modules/syncthing
|
./modules/syncthing
|
||||||
./modules/firefox
|
./modules/firefox
|
||||||
./modules/calibre
|
./modules/calibre
|
||||||
|
|||||||
@@ -6,7 +6,6 @@
|
|||||||
home.homeDirectory = "/home/alex";
|
home.homeDirectory = "/home/alex";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
vim
|
|
||||||
emacs
|
emacs
|
||||||
gnumake
|
gnumake
|
||||||
tig
|
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