14 lines
209 B
Nix
14 lines
209 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/home/git.nix
|
|
../../modules/home/vim.nix
|
|
../../modules/home/zsh.nix
|
|
];
|
|
|
|
modules.git.enable = true;
|
|
modules.vim.enable = true;
|
|
modules.zsh.enable = true;
|
|
}
|