12 lines
225 B
Nix
12 lines
225 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib; {
|
|
options.modules.vim = {
|
|
enable = mkOption { type = types.bool; default = false; };
|
|
};
|
|
|
|
config = mkIf config.modules.vim.enable {
|
|
home.file.".vimrc".source = ./vim/.vimrc;
|
|
};
|
|
}
|